mirror of https://gitee.com/stylefeng/roses
parent
246a0dc005
commit
dfe82b1209
|
@ -19,7 +19,14 @@ 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("user", new MaxCountConfig("sys_user", "user_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", new MaxCountConfig("sys_dict", "dict_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_BASE_MENU", new MaxCountConfig("sys_menu", "menu_sort"));
|
||||||
|
stringMaxCountConfigHashMap.put("SYSTEM_BASE_ROLE", new MaxCountConfig("sys_role", "role_sort"));
|
||||||
|
stringMaxCountConfigHashMap.put("SYSTEM_HR_USER", new MaxCountConfig("sys_user", "user_sort"));
|
||||||
return stringMaxCountConfigHashMap;
|
return stringMaxCountConfigHashMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue