|
@@ -57,9 +57,9 @@ public class TUInterfaceinfoController extends BaseController {
|
|
|
* 查询【请填写功能名称】列表
|
|
|
*/
|
|
|
@RequiresPermissions("system:interfaceinfo:list")
|
|
|
- @PostMapping("/list/{shareType}")
|
|
|
+ @RequestMapping(value = {"/list/{shareType}","/list"})
|
|
|
@ResponseBody
|
|
|
- public TableDataInfo list(@PathVariable("shareType") String shareType, TUInterfaceinfo tUInterfaceinfo) {
|
|
|
+ public TableDataInfo list(@PathVariable(value = "shareType", required = false) String shareType, TUInterfaceinfo tUInterfaceinfo) {
|
|
|
startPage();
|
|
|
tUInterfaceinfo.setShareType(shareType);
|
|
|
List<TUInterfaceinfo> list = tUInterfaceinfoService.selectTUInterfaceinfoList(tUInterfaceinfo);
|