Commit 75128821 by henry

删除多余的代码

1 parent 09fb79ff
...@@ -49,11 +49,6 @@ public class MenuController extends BaseController { ...@@ -49,11 +49,6 @@ public class MenuController extends BaseController {
@ApiOperation(value = "系统功能树形接口", notes = "与添加所需树形结构通用") @ApiOperation(value = "系统功能树形接口", notes = "与添加所需树形结构通用")
@PostMapping("/list") @PostMapping("/list")
@OperLog(value = LogOperTypeEnum.QUERY, logTypeValue = LogTypeEnum.BUSI_LOG, operDes = "系统功能-系统功能树形接口", moduleName = "系统功能") @OperLog(value = LogOperTypeEnum.QUERY, logTypeValue = LogTypeEnum.BUSI_LOG, operDes = "系统功能-系统功能树形接口", moduleName = "系统功能")
/* public Result<List<MenuDto>> list(
@ApiParam(value = "类型",required = false)
@RequestParam(required = false) Integer category,
@ApiParam(value = "名称",required = false)
@RequestParam(required = false) @Size(max=30,message="名称长度小于30") String name) {*/
public Result<List<MenuDto>> list( public Result<List<MenuDto>> list(
@RequestBody Map<String, String> map) { @RequestBody Map<String, String> map) {
String category = map.get("category"); String category = map.get("category");
...@@ -89,9 +84,6 @@ public class MenuController extends BaseController { ...@@ -89,9 +84,6 @@ public class MenuController extends BaseController {
@ApiOperation(value = "菜单权限", notes = "菜单权限") @ApiOperation(value = "菜单权限", notes = "菜单权限")
@PostMapping("/isclist") @PostMapping("/isclist")
@OperLog(value = LogOperTypeEnum.QUERY, logTypeValue = LogTypeEnum.BUSI_LOG, operDes = "系统功能-菜单权限", moduleName = "系统功能") @OperLog(value = LogOperTypeEnum.QUERY, logTypeValue = LogTypeEnum.BUSI_LOG, operDes = "系统功能-菜单权限", moduleName = "系统功能")
/* public Result<List<MenuDto>> isclist(
@ApiParam(value = "类型",required = false)
@RequestParam(required = false) Integer category) throws Exception {*/
public Result<List<MenuDto>> isclist( public Result<List<MenuDto>> isclist(
@RequestBody Map<String, String> map1) throws Exception { @RequestBody Map<String, String> map1) throws Exception {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!