添加功能

This commit is contained in:
马宝龙
2026-06-28 04:01:00 +08:00
parent 18e90dacbf
commit aadf5654de
11 changed files with 1433 additions and 118 deletions

View File

@@ -10,6 +10,7 @@ import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
public class CommonConstant {
/**
@@ -47,6 +48,15 @@ public class CommonConstant {
Tuples.of("652324524000", "150团"),
Tuples.of("659001500000", "152团")
)));
/**
* 团场Map
*/
public static final Map<String, String> AREA_MAP =
Collections.unmodifiableMap(AREA_LIST.stream()
.collect(Collectors.toMap(
Tuple2::getT1,
Tuple2::getT2
)));
/**
* 行业列表
@@ -104,6 +114,15 @@ public class CommonConstant {
Tuples.of("C27", "医药制造业"),
Tuples.of("M73", "研究和试验发展")
)));
/**
* 重点行业Map
*/
public static final Map<String, String> INDUSTRY_MAP =
Collections.unmodifiableMap(INDUSTRY_LIST.stream()
.collect(Collectors.toMap(
Tuple2::getT1,
Tuple2::getT2
)));
/**
* 高校类型列表