11.23开发

This commit is contained in:
hejinbo
2023-11-23 17:35:59 +08:00
parent 9ee2e83c7a
commit 607da65dc4
13 changed files with 166 additions and 62 deletions
@@ -254,4 +254,5 @@ public class SysUserController extends BaseController
public AjaxResult selectUserById(@RequestParam(required = true) Long userId){
return AjaxResult.success(userService.selectUserById(userId));
}
}
@@ -163,4 +163,18 @@ public class DeptIdentifyController extends BaseController {
List<TemplateManage> sealList = deptIdentifyService.getTemplateList(deptIdentify);
return getDataTable(sealList);
}
/**
* 根据部门id查询岗位用户信息
*/
@GetMapping("selectPostUserByDeptId")
public AjaxResult selectPostUserByDeptId(DeptIdentify deptIdentify){
return AjaxResult.success(deptIdentifyService.selectPostUserByDeptId(deptIdentify));
}
/**
* 给机构绑定经办人
*/
@GetMapping("bindHandler")
public AjaxResult bindHandler(DeptIdentify deptIdentify){
return deptIdentifyService.bindHandler(deptIdentify);
}
}