对比新文件 |
| | |
| | | package com.gk.firework.Domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import org.springframework.data.relational.core.mapping.Table; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | @TableName("historystock") |
| | | public class HistoryStock implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** id **/ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** 企业ID owner **/ |
| | | private Long owner; |
| | | |
| | | /** 企业名称 enterprisename **/ |
| | | private String enterprisename; |
| | | |
| | | /** 企业编号 enterprisenumber **/ |
| | | private String enterprisenumber; |
| | | |
| | | /** 企业类型 safetysupervision **/ |
| | | private String safetysupervision; |
| | | |
| | | /** 省 province **/ |
| | | private String province; |
| | | |
| | | /** 市 city **/ |
| | | private String city; |
| | | |
| | | /** 区 district **/ |
| | | private String district; |
| | | |
| | | /** 库存数量 stocknum **/ |
| | | private BigDecimal stocknum; |
| | | |
| | | /** 爆竹类数量 firecracker **/ |
| | | private BigDecimal firecracker; |
| | | |
| | | /** 喷花类数量 spray **/ |
| | | private BigDecimal spray; |
| | | |
| | | /** 旋转类数量 rotation **/ |
| | | private BigDecimal rotation; |
| | | |
| | | /** 吐珠类数量 bead **/ |
| | | private BigDecimal bead; |
| | | |
| | | /** 玩具类数量 toy **/ |
| | | private BigDecimal toy; |
| | | |
| | | /** 组合烟花类数量 combined **/ |
| | | private BigDecimal combined; |
| | | |
| | | /** 更新时间 updateat **/ |
| | | private Date updateat; |
| | | |
| | | /** 标记 flag **/ |
| | | private Byte flag; |
| | | |
| | | /** id **/ |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | /** id **/ |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | /** 企业ID owner **/ |
| | | public Long getOwner() { |
| | | return owner; |
| | | } |
| | | |
| | | /** 企业ID owner **/ |
| | | public void setOwner(Long owner) { |
| | | this.owner = owner; |
| | | } |
| | | |
| | | /** 企业名称 enterprisename **/ |
| | | public String getEnterprisename() { |
| | | return enterprisename; |
| | | } |
| | | |
| | | /** 企业名称 enterprisename **/ |
| | | public void setEnterprisename(String enterprisename) { |
| | | this.enterprisename = enterprisename == null ? null : enterprisename.trim(); |
| | | } |
| | | |
| | | /** 企业编号 enterprisenumber **/ |
| | | public String getEnterprisenumber() { |
| | | return enterprisenumber; |
| | | } |
| | | |
| | | /** 企业编号 enterprisenumber **/ |
| | | public void setEnterprisenumber(String enterprisenumber) { |
| | | this.enterprisenumber = enterprisenumber == null ? null : enterprisenumber.trim(); |
| | | } |
| | | |
| | | /** 企业类型 safetysupervision **/ |
| | | public String getSafetysupervision() { |
| | | return safetysupervision; |
| | | } |
| | | |
| | | /** 企业类型 safetysupervision **/ |
| | | public void setSafetysupervision(String safetysupervision) { |
| | | this.safetysupervision = safetysupervision == null ? null : safetysupervision.trim(); |
| | | } |
| | | |
| | | /** 省 province **/ |
| | | public String getProvince() { |
| | | return province; |
| | | } |
| | | |
| | | /** 省 province **/ |
| | | public void setProvince(String province) { |
| | | this.province = province == null ? null : province.trim(); |
| | | } |
| | | |
| | | /** 市 city **/ |
| | | public String getCity() { |
| | | return city; |
| | | } |
| | | |
| | | /** 市 city **/ |
| | | public void setCity(String city) { |
| | | this.city = city == null ? null : city.trim(); |
| | | } |
| | | |
| | | /** 区 district **/ |
| | | public String getDistrict() { |
| | | return district; |
| | | } |
| | | |
| | | /** 区 district **/ |
| | | public void setDistrict(String district) { |
| | | this.district = district == null ? null : district.trim(); |
| | | } |
| | | |
| | | /** 库存数量 stocknum **/ |
| | | public BigDecimal getStocknum() { |
| | | return stocknum; |
| | | } |
| | | |
| | | /** 库存数量 stocknum **/ |
| | | public void setStocknum(BigDecimal stocknum) { |
| | | this.stocknum = stocknum; |
| | | } |
| | | |
| | | /** 爆竹类数量 firecracker **/ |
| | | public BigDecimal getFirecracker() { |
| | | return firecracker; |
| | | } |
| | | |
| | | /** 爆竹类数量 firecracker **/ |
| | | public void setFirecracker(BigDecimal firecracker) { |
| | | this.firecracker = firecracker; |
| | | } |
| | | |
| | | /** 喷花类数量 spray **/ |
| | | public BigDecimal getSpray() { |
| | | return spray; |
| | | } |
| | | |
| | | /** 喷花类数量 spray **/ |
| | | public void setSpray(BigDecimal spray) { |
| | | this.spray = spray; |
| | | } |
| | | |
| | | /** 旋转类数量 rotation **/ |
| | | public BigDecimal getRotation() { |
| | | return rotation; |
| | | } |
| | | |
| | | /** 旋转类数量 rotation **/ |
| | | public void setRotation(BigDecimal rotation) { |
| | | this.rotation = rotation; |
| | | } |
| | | |
| | | /** 吐珠类数量 bead **/ |
| | | public BigDecimal getBead() { |
| | | return bead; |
| | | } |
| | | |
| | | /** 吐珠类数量 bead **/ |
| | | public void setBead(BigDecimal bead) { |
| | | this.bead = bead; |
| | | } |
| | | |
| | | /** 玩具类数量 toy **/ |
| | | public BigDecimal getToy() { |
| | | return toy; |
| | | } |
| | | |
| | | /** 玩具类数量 toy **/ |
| | | public void setToy(BigDecimal toy) { |
| | | this.toy = toy; |
| | | } |
| | | |
| | | /** 组合烟花类数量 combined **/ |
| | | public BigDecimal getCombined() { |
| | | return combined; |
| | | } |
| | | |
| | | /** 组合烟花类数量 combined **/ |
| | | public void setCombined(BigDecimal combined) { |
| | | this.combined = combined; |
| | | } |
| | | |
| | | /** 更新时间 updateat **/ |
| | | public Date getUpdateat() { |
| | | return updateat; |
| | | } |
| | | |
| | | /** 更新时间 updateat **/ |
| | | public void setUpdateat(Date updateat) { |
| | | this.updateat = updateat; |
| | | } |
| | | |
| | | /** 标记 flag **/ |
| | | public Byte getFlag() { |
| | | return flag; |
| | | } |
| | | |
| | | /** 标记 flag **/ |
| | | public void setFlag(Byte flag) { |
| | | this.flag = flag; |
| | | } |
| | | } |