diff --git a/kernel-s-system/system-api/src/main/java/cn/stylefeng/roses/kernel/sys/api/maxsort/SystemMaxSortFieldConfig.java b/kernel-s-system/system-api/src/main/java/cn/stylefeng/roses/kernel/sys/api/maxsort/SystemMaxSortFieldConfig.java index acf1b886b..519286bee 100644 --- a/kernel-s-system/system-api/src/main/java/cn/stylefeng/roses/kernel/sys/api/maxsort/SystemMaxSortFieldConfig.java +++ b/kernel-s-system/system-api/src/main/java/cn/stylefeng/roses/kernel/sys/api/maxsort/SystemMaxSortFieldConfig.java @@ -19,7 +19,14 @@ public class SystemMaxSortFieldConfig implements MaxSortCollectorApi { @Override public Map createMaxSortConfigs() { HashMap 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; }