任务确认流程。

This commit is contained in:
wangzhijiang
2022-04-25 17:14:59 +08:00
parent aa520f0278
commit 7883e63817
4 changed files with 17 additions and 0 deletions
@@ -1566,4 +1566,13 @@ public class SysUserController {
}
return result;
}
@RequestMapping(value = "/querySysUserListByIdList", method = RequestMethod.GET)
public List<SysUser> querySysUserListByIdList(@RequestParam String json){
JSONObject jsonObject = JSONObject.parseObject(json);
String userIds = jsonObject.getJSONArray("userIdList").toString();
List<String> userIdList = JSONObject.parseArray(userIds, String.class);
List<SysUser> sysUserList = sysUserService.querySysUserListByIdList(userIdList);
return sysUserList;
}
}