添加功能

This commit is contained in:
马宝龙
2026-06-26 12:37:58 +08:00
parent 690ce9d49f
commit 4424604b5b
11 changed files with 722 additions and 0 deletions

View File

@@ -75,4 +75,15 @@ public class CommonConstant {
Tuples.of("T", "国际组织")
)));
/**
* 行业列表
*/
public static final List<Tuple2<String, String>> UNIVERSITY_TYPE_LIST =
Collections.unmodifiableList(new ArrayList<>(Arrays.asList(
Tuples.of("1", "一本院校"),
Tuples.of("2", "二本院校"),
Tuples.of("3", "专科院校"),
Tuples.of("4", "民办院校")
)));
}