package com.gk.firework.Domain.Vo;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
public class EnterpriseWarehouseVo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id id **/
|
private Long id;
|
|
/** 栋号 bulidingnumber **/
|
private String bulidingnumber;
|
|
/** 危险等级 dangerlevel **/
|
private String dangerlevel;
|
|
/** 面积(m2) area **/
|
private BigDecimal area;
|
|
/** 限制作业人数 limits **/
|
private Integer limits;
|
|
/** 安全责任人 safetyperson **/
|
private String safetyperson;
|
|
private Integer holdinventory;
|
|
private BigDecimal medicinelimits;
|
|
private String safetypersonphone;
|
|
/** 企业id enterpriseid **/
|
private Long enterpriseid;
|
|
private List<Long> imgids;
|
|
private MultipartFile[] file;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getBulidingnumber() {
|
return bulidingnumber;
|
}
|
|
public void setBulidingnumber(String bulidingnumber) {
|
this.bulidingnumber = bulidingnumber;
|
}
|
|
public String getDangerlevel() {
|
return dangerlevel;
|
}
|
|
public void setDangerlevel(String dangerlevel) {
|
this.dangerlevel = dangerlevel;
|
}
|
|
public BigDecimal getArea() {
|
return area;
|
}
|
|
public void setArea(BigDecimal area) {
|
this.area = area;
|
}
|
|
public Integer getLimits() {
|
return limits;
|
}
|
|
public void setLimits(Integer limits) {
|
this.limits = limits;
|
}
|
|
public String getSafetyperson() {
|
return safetyperson;
|
}
|
|
public void setSafetyperson(String safetyperson) {
|
this.safetyperson = safetyperson;
|
}
|
|
public Long getEnterpriseid() {
|
return enterpriseid;
|
}
|
|
public void setEnterpriseid(Long enterpriseid) {
|
this.enterpriseid = enterpriseid;
|
}
|
|
public List<Long> getImgids() {
|
return imgids;
|
}
|
|
public void setImgids(List<Long> imgids) {
|
this.imgids = imgids;
|
}
|
|
public MultipartFile[] getFile() {
|
return file;
|
}
|
|
public void setFile(MultipartFile[] file) {
|
this.file = file;
|
}
|
|
public Integer getHoldinventory() {
|
return holdinventory;
|
}
|
|
public void setHoldinventory(Integer holdinventory) {
|
this.holdinventory = holdinventory;
|
}
|
|
public BigDecimal getMedicinelimits() {
|
return medicinelimits;
|
}
|
|
public void setMedicinelimits(BigDecimal medicinelimits) {
|
this.medicinelimits = medicinelimits;
|
}
|
|
public String getSafetypersonphone() {
|
return safetypersonphone;
|
}
|
|
public void setSafetypersonphone(String safetypersonphone) {
|
this.safetypersonphone = safetypersonphone;
|
}
|
}
|