|
@@ -87,11 +87,6 @@ public class FlowApiController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- *
|
|
|
- * @param jsonObject
|
|
|
- * @return
|
|
|
- */
|
|
|
private R getRoleCityByUserId(JSONObject jsonObject) {
|
|
|
Integer userId = jsonObject.getInteger("userId");
|
|
|
if (null == userId) {
|
|
@@ -107,7 +102,7 @@ public class FlowApiController {
|
|
|
return R.ok().data(flowRoleCityVos);
|
|
|
}
|
|
|
|
|
|
- public R findRoleList(JSONObject jsonObject) {
|
|
|
+ private R findRoleList(JSONObject jsonObject) {
|
|
|
String username = jsonObject.getString("userName");
|
|
|
if (username == null || username.equals("")) {
|
|
|
return R.ok().data(flowService.findRoleList());
|
|
@@ -116,12 +111,12 @@ public class FlowApiController {
|
|
|
return R.ok().data(roleList);
|
|
|
}
|
|
|
|
|
|
- public R findToPage() {
|
|
|
+ private R findToPage() {
|
|
|
List<FlowUserVo> flowUserVos = flowService.findToPage();
|
|
|
return R.ok().data(flowUserVos);
|
|
|
}
|
|
|
|
|
|
- public R getByLoginId(JSONObject jsonObject) {
|
|
|
+ private R getByLoginId(JSONObject jsonObject) {
|
|
|
String loginId = jsonObject.getString("loginId");
|
|
|
if (loginId == null || loginId.equals("")) {
|
|
|
return R.error().message("输入必须包含loginId");
|
|
@@ -130,7 +125,7 @@ public class FlowApiController {
|
|
|
return R.ok().data(flowUserVo);
|
|
|
}
|
|
|
|
|
|
- public R get(JSONObject jsonObject) {
|
|
|
+ private R get(JSONObject jsonObject) {
|
|
|
Integer userId = null;
|
|
|
try {
|
|
|
userId = jsonObject.getInteger("userId");
|
|
@@ -144,7 +139,7 @@ public class FlowApiController {
|
|
|
return R.ok().data(flowUserVo);
|
|
|
}
|
|
|
|
|
|
- public R findRoleIdByUserId(JSONObject jsonObject) {
|
|
|
+ private R findRoleIdByUserId(JSONObject jsonObject) {
|
|
|
Integer userId = null;
|
|
|
try {
|
|
|
userId = jsonObject.getInteger("userId");
|
|
@@ -158,7 +153,7 @@ public class FlowApiController {
|
|
|
return R.ok().data(roleIdList);
|
|
|
}
|
|
|
|
|
|
- public R findUserIdByRoleId(JSONObject jsonObject) {
|
|
|
+ private R findUserIdByRoleId(JSONObject jsonObject) {
|
|
|
Integer roleId = null;
|
|
|
try {
|
|
|
roleId = jsonObject.getInteger("roleId");
|
|
@@ -172,7 +167,7 @@ public class FlowApiController {
|
|
|
return R.ok().data(userIdList);
|
|
|
}
|
|
|
|
|
|
- public R findAuthorizedUser(JSONObject jsonObject) {
|
|
|
+ private R findAuthorizedUser(JSONObject jsonObject) {
|
|
|
String loginId = jsonObject.getString("loginId");
|
|
|
loginId = loginId == null || loginId.equals("") ? null : loginId.trim();
|
|
|
Integer roleId = null;
|