guoshilong
2024-04-24 6aeeb1fbdea6b0f9c36678efd49bd90d2ca2a6dc
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;
 
}