类 SchemeController
java.lang.Object
com.jeeplus.devtools.controller.SchemeController
生成方案Controller
- 版本:
- 2021-10-15
- 作者:
- jeeplus
-
字段概要
字段 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明org.springframework.http.ResponseEntitycreateMenu(String tableId, String tableType, MenuDTO menuDTO) org.springframework.http.ResponseEntitygetFileTree(String parentNode) 返回子目录jsonorg.springframework.http.ResponseEntity
-
字段详细资料
-
schemaService
-
tableService
-
demoMode
@Value("${demoMode}") public boolean demoMode
-
-
构造器详细资料
-
SchemeController
public SchemeController()
-
-
方法详细资料
-
getFileTree
@GetMapping("getFileTree") public org.springframework.http.ResponseEntity getFileTree(@RequestParam(name="parentNode",required=false) String parentNode) 返回子目录json- 参数:
parentNode-- 返回:
-
save
@RequestMapping("save") public org.springframework.http.ResponseEntity save(@RequestBody SchemeDTO schemeDTO) throws Exception - 抛出:
Exception
-
createMenu
@PostMapping("createMenu") public org.springframework.http.ResponseEntity createMenu(@RequestParam(name="tableId",required=false) String tableId, @RequestParam(name="tableType",required=false) String tableType, MenuDTO menuDTO) throws Exception - 抛出:
Exception
-