[修改] 流程中心 效率优化
This commit is contained in:
@@ -119,8 +119,8 @@ public class UserEOController extends BaseController<UserEO> {
|
||||
|
||||
@ApiOperation("获取所有用户")
|
||||
@GetMapping("/list")
|
||||
public ResponseMessage list(int pageNo, int pageSize, String account, String roleName) {
|
||||
IPage<Map<String, Object>> list = userEOService.list(pageNo, pageSize, account, roleName);
|
||||
public ResponseMessage list(int page, int pageSize, String account, String roleName) {
|
||||
IPage<Map<String, Object>> list = userEOService.list(page, pageSize, account, roleName);
|
||||
list.getRecords().forEach(c -> {
|
||||
try {
|
||||
c.put("CELLPHONE_NUMBER", StringUtils.isNotEmpty(c.get("CELLPHONE_NUMBER")) ? EncryptUtil.decrypt(c.get("CELLPHONE_NUMBER").toString())
|
||||
|
||||
Reference in New Issue
Block a user