2026-01-09 20:13:01 +08:00
|
|
|
package com.ruoyi.cms.constant;
|
|
|
|
|
|
2026-06-25 16:44:47 +08:00
|
|
|
import reactor.util.function.Tuple2;
|
|
|
|
|
import reactor.util.function.Tuples;
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
|
import java.util.Collections;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2026-01-09 20:13:01 +08:00
|
|
|
public class CommonConstant {
|
|
|
|
|
/**
|
|
|
|
|
* 地铁线路缓存
|
|
|
|
|
*/
|
|
|
|
|
public static final String SUBWAY_LINE_CACHE = "common_cache:subway";
|
|
|
|
|
public static final String COMMERICIAL_AREA = "common_cache:comericial_area";
|
|
|
|
|
public static final String JOB_TITLE = "common_cache:job_titile";
|
2026-06-25 16:44:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 团场列表
|
|
|
|
|
*/
|
|
|
|
|
public static final List<Tuple2<String, String>> AREA_LIST =
|
|
|
|
|
Collections.unmodifiableList(new ArrayList<>(Arrays.asList(
|
|
|
|
|
Tuples.of("659001000000", "石河子市"),
|
|
|
|
|
Tuples.of("659001001000", "新城街道"),
|
|
|
|
|
Tuples.of("659001002000", "向阳街道"),
|
|
|
|
|
Tuples.of("659001003000", "红山街道"),
|
|
|
|
|
Tuples.of("659001004000", "老街街道"),
|
|
|
|
|
Tuples.of("659001005000", "东城街道"),
|
|
|
|
|
Tuples.of("659001100000", "北泉镇"),
|
|
|
|
|
Tuples.of("659001101000", "石河子镇"),
|
|
|
|
|
Tuples.of("654203503000", "121团"),
|
|
|
|
|
Tuples.of("654203506000", "133团"),
|
|
|
|
|
Tuples.of("654203507000", "134团"),
|
|
|
|
|
Tuples.of("650203530000", "136团"),
|
|
|
|
|
Tuples.of("654203509000", "141团"),
|
|
|
|
|
Tuples.of("654203510000", "142团"),
|
|
|
|
|
Tuples.of("654203511000", "143团"),
|
|
|
|
|
Tuples.of("654203512000", "144团"),
|
|
|
|
|
Tuples.of("652324521000", "147团"),
|
|
|
|
|
Tuples.of("652324522000", "148团"),
|
|
|
|
|
Tuples.of("652324523000", "149团"),
|
|
|
|
|
Tuples.of("652324524000", "150团"),
|
|
|
|
|
Tuples.of("659001500000", "152团")
|
|
|
|
|
)));
|
|
|
|
|
|
2026-01-09 20:13:01 +08:00
|
|
|
}
|