1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package cn.gistack.resource.vo;
|
| import lombok.Data;
|
| /**
| * 告警资料缺失vo
| */
| @Data
| public class AlertTextualResearchAttachVO {
|
| private String res_cd;
| private String res_nm;
| private String town_cd;
| private String town_nm;
| private String county_cd;
| private String county_nm;
| private String city_cd;
| private String city_nm;
|
| private String type;
| }
|
|