任务确认流程。
This commit is contained in:
+9
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user