1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package cn.gistack.sm.notice.constant;
|
| import java.util.ArrayList;
| import java.util.HashMap;
| import java.util.List;
| import java.util.Map;
|
| /**
| * 中台接口响应列常量
| * @author zhongrj
| * @since 2023-04-21
| */
| public class ZtApiDataColumnConstant {
|
|
| /**
| * 水位数据缺失字段(不包含责任人相关信息)
| */
| public static List<String> waterInfoNotList = new ArrayList<String>()
| {{
| add("county_nm,town_nm");
| add("res_nm");
| }};
|
| }
|
|