对比新文件 |
| | |
| | | package com.gk.firework.Domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.*; |
| | | |
| | | @TableName("enterprisewarehouse") |
| | | public class EnterpriseWarehouse implements Serializable { |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键id id **/ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** 栋号 bulidingnumber **/ |
| | | private String bulidingnumber; |
| | | |
| | | /** 危险等级 dangerlevel **/ |
| | | private String dangerlevel; |
| | | |
| | | /** 面积(m2) area **/ |
| | | private BigDecimal area; |
| | | |
| | | private BigDecimal medicinelimits; |
| | | |
| | | private String safetypersonphone; |
| | | |
| | | /** 限制作业人数 limit **/ |
| | | private Integer limits; |
| | | |
| | | /** 安全责任人 safetyperson **/ |
| | | private String safetyperson; |
| | | |
| | | /** 企业id enterpriseid **/ |
| | | private Long enterpriseid; |
| | | |
| | | /** 创建时间 createtime **/ |
| | | private Date createtime; |
| | | |
| | | /** 创建人id createby **/ |
| | | private Long createby; |
| | | |
| | | /** 创建人name createbyname **/ |
| | | private String createbyname; |
| | | |
| | | /** 更新时间 updatetime **/ |
| | | private Date updatetime; |
| | | |
| | | /** 更新人id updateby **/ |
| | | private Long updateby; |
| | | |
| | | /** 更信人name updatebyname **/ |
| | | private String updatebyname; |
| | | |
| | | /** 有效标识 validflag **/ |
| | | private Boolean validflag; |
| | | |
| | | /** 可以容纳库存 **/ |
| | | private Integer holdinventory; |
| | | |
| | | @TableField(exist = false) |
| | | private List<EnterpriseResource> enterpriseResources; |
| | | |
| | | /** 主键id id **/ |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | /** 主键id id **/ |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | /** 栋号 bulidingnumber **/ |
| | | public String getBulidingnumber() { |
| | | return bulidingnumber; |
| | | } |
| | | /** 栋号 bulidingnumber **/ |
| | | public void setBulidingnumber(String bulidingnumber) { |
| | | this.bulidingnumber = bulidingnumber; |
| | | } |
| | | |
| | | /** 危险等级 dangerlevel **/ |
| | | public String getDangerlevel() { |
| | | return dangerlevel; |
| | | } |
| | | |
| | | /** 危险等级 dangerlevel **/ |
| | | public void setDangerlevel(String dangerlevel) { |
| | | this.dangerlevel = dangerlevel == null ? null : dangerlevel.trim(); |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | | /** 安全责任人 safetyperson **/ |
| | | public String getSafetyperson() { |
| | | return safetyperson; |
| | | } |
| | | |
| | | /** 安全责任人 safetyperson **/ |
| | | public void setSafetyperson(String safetyperson) { |
| | | this.safetyperson = safetyperson == null ? null : safetyperson.trim(); |
| | | } |
| | | |
| | | /** 企业id enterpriseid **/ |
| | | public Long getEnterpriseid() { |
| | | return enterpriseid; |
| | | } |
| | | |
| | | /** 企业id enterpriseid **/ |
| | | public void setEnterpriseid(Long enterpriseid) { |
| | | this.enterpriseid = enterpriseid; |
| | | } |
| | | |
| | | /** 创建时间 createtime **/ |
| | | public Date getCreatetime() { |
| | | return createtime; |
| | | } |
| | | |
| | | /** 创建时间 createtime **/ |
| | | public void setCreatetime(Date createtime) { |
| | | this.createtime = createtime; |
| | | } |
| | | |
| | | /** 创建人id createby **/ |
| | | public Long getCreateby() { |
| | | return createby; |
| | | } |
| | | |
| | | /** 创建人id createby **/ |
| | | public void setCreateby(Long createby) { |
| | | this.createby = createby; |
| | | } |
| | | |
| | | /** 创建人name createbyname **/ |
| | | public String getCreatebyname() { |
| | | return createbyname; |
| | | } |
| | | |
| | | /** 创建人name createbyname **/ |
| | | public void setCreatebyname(String createbyname) { |
| | | this.createbyname = createbyname == null ? null : createbyname.trim(); |
| | | } |
| | | |
| | | /** 更新时间 updatetime **/ |
| | | public Date getUpdatetime() { |
| | | return updatetime; |
| | | } |
| | | |
| | | /** 更新时间 updatetime **/ |
| | | public void setUpdatetime(Date updatetime) { |
| | | this.updatetime = updatetime; |
| | | } |
| | | |
| | | /** 更新人id updateby **/ |
| | | public Long getUpdateby() { |
| | | return updateby; |
| | | } |
| | | |
| | | /** 更新人id updateby **/ |
| | | public void setUpdateby(Long updateby) { |
| | | this.updateby = updateby; |
| | | } |
| | | |
| | | /** 更信人name updatebyname **/ |
| | | public String getUpdatebyname() { |
| | | return updatebyname; |
| | | } |
| | | |
| | | /** 更信人name updatebyname **/ |
| | | public void setUpdatebyname(String updatebyname) { |
| | | this.updatebyname = updatebyname == null ? null : updatebyname.trim(); |
| | | } |
| | | |
| | | /** 有效标识 validflag **/ |
| | | public Boolean getValidflag() { |
| | | return validflag; |
| | | } |
| | | |
| | | /** 有效标识 validflag **/ |
| | | public void setValidflag(Boolean validflag) { |
| | | this.validflag = validflag; |
| | | } |
| | | |
| | | public List<EnterpriseResource> getEnterpriseResources() { |
| | | return enterpriseResources; |
| | | } |
| | | |
| | | public void setEnterpriseResources(List<EnterpriseResource> enterpriseResources) { |
| | | this.enterpriseResources = enterpriseResources; |
| | | } |
| | | |
| | | |
| | | 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; |
| | | } |
| | | } |