Commit 1675f558 by guojuxing

应用子页面新增/编辑接口

parent 7fb4da87
......@@ -100,6 +100,16 @@ public class MenuController {
return ResultControllerUtils.commonResult(menuApiService.updateAppPage(menuDTO));
}
@RequestMapping("/save-app-child-page")
public RestResponse saveAppChildPage(MenuDTO menuDTO) {
return ResultControllerUtils.commonResult(menuApiService.saveAppChildPage(menuDTO));
}
@RequestMapping("/update-app-child-page")
public RestResponse updateAppChildPage(MenuDTO menuDTO) {
return ResultControllerUtils.commonResult(menuApiService.updateAppChildPage(menuDTO));
}
/**
* 查询列表数据
* @Title: updateAppPage

......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment