入职流程完成

This commit is contained in:
2025-03-07 18:09:16 +08:00
parent f78b3dda14
commit 4a1009e02e
25 changed files with 296 additions and 515 deletions

View File

@@ -271,9 +271,9 @@ public class SysUserController extends BaseController {
*/
@SaCheckPermission("system:user:edit")
@Log(title = "用户管理", businessType = BusinessType.GRANT)
@GetMapping("/tempRole")
public R<Void> insertTempRole(Long userId) {
Long[] roleId = roleService.selectRoleByName();
@GetMapping("/tempRole/{userId}")
public R<Void> insertTempRole(@PathVariable("userId") Long userId) {
Long[] roleId = roleService.selectTempRoleByName();
userService.insertUserAuth(userId, roleId);
return R.ok();
}

View File

@@ -66,8 +66,6 @@ public class WfProcessController extends BaseController {
@SaCheckPermission("workflow:process:todoList")
@GetMapping(value = "/todoList")
public TableDataInfo<WfTaskVo> todoProcessList(ProcessQuery processQuery, PageQuery pageQuery) {
System.out.println("processQuery====" + processQuery);
System.out.println("pageQuery====" + pageQuery);
return processService.selectPageTodoProcessList(processQuery, pageQuery);
}