zhongrj
2024-12-26 a1272d78844574b86645149a0d8ca257c2b8fe91
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package org.springblade.modules.yw.vo;
 
import io.swagger.annotations.ApiModelProperty;
import org.springblade.modules.yw.entity.IndParkInfoEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 园区基本信息表 视图实体类
 *
 * @author BladeX
 * @since 2024-10-28
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class IndParkInfoVO extends IndParkInfoEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * 企业数量
     */
    @ApiModelProperty(value = "企业数量", example = "")
    private Integer firmNum;
 
    /**
     * 园区级别
     */
    @ApiModelProperty(value = "园区级别", example = "")
    private String parkLevel;
 
    /**
     * 地市
     */
    @ApiModelProperty(value = "地市", example = "")
    private String regionName;
 
    /**
     * 救援人员数量
     */
    @ApiModelProperty(value = "救援人员数量", example = "")
    private Integer recNum;
 
    /**
     * 风险企业数量
     */
    @ApiModelProperty(value = "风险企业数量", example = "")
    private Integer riskFirmNum;
 
    /**
     * 保护目标数量
     */
    @ApiModelProperty(value = "保护目标数量", example = "")
    private Integer proTarNum;
 
    /**
     * 应急空间数量
     */
    @ApiModelProperty(value = "应急空间数量", example = "")
    private Integer spaceNum;
 
    /**
     * 应急池容量
     */
    @ApiModelProperty(value = "应急池容量", example = "")
    private String emePool;
}