package org.springblade.modules.yw.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import org.springblade.modules.yw.entity.EmergencySuppliesEntity;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* 应急物资表 视图实体类
|
*
|
* @author BladeX
|
* @since 2024-10-28
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class EmergencySuppliesVO extends EmergencySuppliesEntity {
|
private static final long serialVersionUID = 1L;
|
|
|
@ApiModelProperty(value = "企业名称")
|
private String firmName;
|
|
@ApiModelProperty(value = "类型")
|
private String emeSupType;
|
|
@ApiModelProperty(value = "数量单位(拼接)")
|
private String numUnit;
|
|
/**
|
* 责任人姓名
|
*/
|
@ApiModelProperty(value = "责任人姓名")
|
private String personInCha;
|
/**
|
* 责任人电话
|
*/
|
@ApiModelProperty(value = "责任人电话")
|
private String personInChaPhone;
|
/**
|
* 归属
|
*/
|
@ApiModelProperty(value = "归属")
|
private Integer ownership;
|
/**
|
* 物资仓库地址
|
*/
|
@ApiModelProperty(value = "物资仓库地址")
|
private String supAdd;
|
/**
|
* 物资仓库经度
|
*/
|
@ApiModelProperty(value = "物资仓库经度")
|
private String lng;
|
/**
|
* 物资仓库纬度
|
*/
|
@ApiModelProperty(value = "物资仓库纬度")
|
private String lat;
|
|
/**
|
* 全景地址url
|
*/
|
@ApiModelProperty(value = "全景地址url")
|
private String panoramicUrl;
|
|
}
|