Commit c8da4fe7 authored by nie'hong's avatar nie'hong

平台用户管理界面获取的账号类型中除去三个类型

parent 0ccbf978
......@@ -651,9 +651,14 @@ public class RoleController extends BaseController {
ew.select("id", "name");
ew.eq("is_deleted", 0);
ew.eq("status", 1);
// 不要这三个单位管理员 统计管理员 互动审核员
ew.ne("alias", "dwgly");
ew.ne("alias", "tjgly");
ew.ne("alias", "hdshy");
ew.orderByAsc("sortorder");
ew.orderByDesc("create_time");
List<Role> list = roleService.list(ew);
return getResult(list);
} catch (Exception e) {
LOGGER.error("查询角色列表出错!", e);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment