mirror of https://gitee.com/stylefeng/roses
【8.1.0】【maxsort】更新排序的注释
parent
141d97b99d
commit
f2866e934f
|
@ -19,14 +19,28 @@ public class SystemMaxSortFieldConfig implements MaxSortCollectorApi {
|
||||||
@Override
|
@Override
|
||||||
public Map<String, MaxCountConfig> createMaxSortConfigs() {
|
public Map<String, MaxCountConfig> createMaxSortConfigs() {
|
||||||
HashMap<String, MaxCountConfig> stringMaxCountConfigHashMap = new HashMap<>();
|
HashMap<String, MaxCountConfig> stringMaxCountConfigHashMap = new HashMap<>();
|
||||||
|
|
||||||
|
// 应用管理的排序
|
||||||
stringMaxCountConfigHashMap.put("SYSTEM_BASE_APP", new MaxCountConfig("sys_app", "app_sort"));
|
stringMaxCountConfigHashMap.put("SYSTEM_BASE_APP", new MaxCountConfig("sys_app", "app_sort"));
|
||||||
|
|
||||||
|
// 字典类型管理的排序
|
||||||
stringMaxCountConfigHashMap.put("SYSTEM_BASE_DICT_TYPE", new MaxCountConfig("sys_dict_type", "dict_type_sort"));
|
stringMaxCountConfigHashMap.put("SYSTEM_BASE_DICT_TYPE", new MaxCountConfig("sys_dict_type", "dict_type_sort"));
|
||||||
|
|
||||||
|
// 字典管理的排序
|
||||||
stringMaxCountConfigHashMap.put("SYSTEM_BASE_DICT", new MaxCountConfig("sys_dict", "dict_sort"));
|
stringMaxCountConfigHashMap.put("SYSTEM_BASE_DICT", new MaxCountConfig("sys_dict", "dict_sort"));
|
||||||
|
|
||||||
|
// 组织机构排序
|
||||||
stringMaxCountConfigHashMap.put("SYSTEM_HR_ORGANIZATION", new MaxCountConfig("sys_hr_organization", "org_sort"));
|
stringMaxCountConfigHashMap.put("SYSTEM_HR_ORGANIZATION", new MaxCountConfig("sys_hr_organization", "org_sort"));
|
||||||
|
|
||||||
|
// 职位的排序
|
||||||
stringMaxCountConfigHashMap.put("SYSTEM_HR_POSITION", new MaxCountConfig("sys_hr_position", "position_sort"));
|
stringMaxCountConfigHashMap.put("SYSTEM_HR_POSITION", new MaxCountConfig("sys_hr_position", "position_sort"));
|
||||||
stringMaxCountConfigHashMap.put("SYSTEM_BASE_MENU", new MaxCountConfig("sys_menu", "menu_sort"));
|
|
||||||
|
// 角色的排序
|
||||||
stringMaxCountConfigHashMap.put("SYSTEM_BASE_ROLE", new MaxCountConfig("sys_role", "role_sort"));
|
stringMaxCountConfigHashMap.put("SYSTEM_BASE_ROLE", new MaxCountConfig("sys_role", "role_sort"));
|
||||||
|
|
||||||
|
// 用户的排序
|
||||||
stringMaxCountConfigHashMap.put("SYSTEM_HR_USER", new MaxCountConfig("sys_user", "user_sort"));
|
stringMaxCountConfigHashMap.put("SYSTEM_HR_USER", new MaxCountConfig("sys_user", "user_sort"));
|
||||||
|
|
||||||
return stringMaxCountConfigHashMap;
|
return stringMaxCountConfigHashMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue