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;
|
}
|