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.math.BigDecimal;
|
import java.util.Date;
|
@TableName("staticstock")
|
public class StaticStock {
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
/** id **/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 企业ID owner **/
|
private Long owner;
|
|
/** 企业名称 enterpriseName **/
|
@TableField(value = "enterprisename")
|
private String enterpriseName;
|
|
/** 企业编号 enterpriseNumber **/
|
@TableField(value = "enterprisenumber")
|
private String enterpriseNumber;
|
|
/** 企业类型 safetySuperVision **/
|
@TableField(value = "safetysupervision")
|
private String safetySuperVision;
|
|
/** 省 province **/
|
private String province;
|
|
/** 市 city **/
|
private String city;
|
|
/** 区 district **/
|
private String district;
|
|
/** 库存数量 stockNum **/
|
@TableField(value = "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;
|
|
/** 更新人 updatedby **/
|
private String updatedby;
|
|
/** 更新时间 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;
|
}
|
|
/** 更新人 updatedby **/
|
public String getUpdatedby() {
|
return updatedby;
|
}
|
|
/** 更新人 updatedby **/
|
public void setUpdatedby(String updatedby) {
|
this.updatedby = updatedby == null ? null : updatedby.trim();
|
}
|
|
/** 更新时间 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;
|
}
|
|
public StaticStock() {
|
}
|
|
public StaticStock(Long owner, String enterpriseName, String enterpriseNumber, String safetySuperVision, String province, String city, String district, BigDecimal stockNum, BigDecimal firecracker, BigDecimal spray, BigDecimal rotation, BigDecimal bead, BigDecimal toy, BigDecimal combined, String updatedby, Date updateat, Byte flag) {
|
this.owner = owner;
|
this.enterpriseName = enterpriseName;
|
this.enterpriseNumber = enterpriseNumber;
|
this.safetySuperVision = safetySuperVision;
|
this.province = province;
|
this.city = city;
|
this.district = district;
|
this.stockNum = stockNum;
|
this.firecracker = firecracker;
|
this.spray = spray;
|
this.rotation = rotation;
|
this.bead = bead;
|
this.toy = toy;
|
this.combined = combined;
|
this.updatedby = updatedby;
|
this.updateat = updateat;
|
this.flag = flag;
|
}
|
|
}
|