|
|
|
@ -133,15 +133,6 @@ public class AuthController { |
|
|
|
public R getAuthGroupBusinessList(@RequestBody AuthGroupData data) { |
|
|
|
List<AuthGroupMemberDataVo> row1 = authGroupMemberService.authGroupBusinessSearch(data); |
|
|
|
List<AuthGroupMemberDataVo> row2 = authGroupMemberService.authGroupBusinessSearch2(data); |
|
|
|
// 将rows中row2的数据排除 |
|
|
|
for (AuthGroupMemberDataVo row : row2) { |
|
|
|
for (int i = 0; i < row1.size(); i++) { |
|
|
|
if (row1.get(i).getUserId().equals(row.getUserId())) { |
|
|
|
row1.remove(i); |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
return R.ok().put("row1", row1).put("row2", row2); |
|
|
|
} |
|
|
|
|
|
|
|
|