添加功能

This commit is contained in:
马宝龙
2026-06-27 01:58:14 +08:00
parent bfc69faa8c
commit c40c32ce8c
9 changed files with 404 additions and 0 deletions

View File

@@ -129,4 +129,17 @@ public class CommonConstant {
Tuples.of("6", "农业")
)));
/**
* 重点群体列表
*/
public static final List<Tuple2<String, String>> KEY_GROUP_LIST =
Collections.unmodifiableList(new ArrayList<>(Arrays.asList(
Tuples.of("1", "失业人员"),
Tuples.of("2", "高校毕业生"),
Tuples.of("3", "残疾人"),
Tuples.of("4", "低收入家庭"),
Tuples.of("5", "零就业家庭"),
Tuples.of("6", "其他重点人群")
)));
}