guoshilong
2024-01-03 7a097bbdf5e87d1068a3b4831ccf0c23ea46cc5e
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
26
27
28
29
30
package cn.gistack.sm.damSecurity.vo;
 
import lombok.Data;
 
/**
 * 根据行政区划统计
 */
@Data
public class DamStatisticsRegion {
 
    private String adCode;
 
    private String adName;
 
    private String pAdCode;
 
    private String pAdName;
 
    private Integer total;
 
    //类型( sy、sl、wy   )
    private String type;
 
 
    //状态(1、正常,2、异常)
    private String status;
 
    private String adGrad;
 
}