guoshilong
2023-12-28 6b8971db2990a8bcb4c67ba0d07df2368a00a45e
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
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;
 
}