/** | /** | ||||
* 根据id查询子部门列表 | * 根据id查询子部门列表 | ||||
*/ | */ | ||||
@GetMapping("/child/list/{id}") | |||||
public JsonResult getChildList(@PathVariable("id") String id) { | |||||
@GetMapping(value= {"/child/list/{id}", "/child/list"}) | |||||
public JsonResult getChildList(@PathVariable(value="id", required=false) String id ) { | |||||
// log.info("进入获取子部门分页列表列表接口, id:{}", id); | // log.info("进入获取子部门分页列表列表接口, id:{}", id); | ||||
return deptService.getChildList(id); | return deptService.getChildList(id); | ||||
} | } |