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("productthreshold") public class ProductThresholdInfo { @TableField(exist = false) private static final long serialVersionUID = 1L; /** id **/ @TableId(type = IdType.AUTO) private Long id; /** 产品信息id productid **/ private Long productid; /** 产品编码 itemcode **/ private String itemcode; /** 含药量限制 explosivecontent **/ private BigDecimal explosivecontent; /** 级别限制(ABCD级) level **/ private String level; /** 箱数限制 boxnumber **/ private Integer boxnumber; /** 创建人 createdby **/ private String createdby; /** 创建时间 createdat **/ private Date createdat; /** id **/ public Long getId() { return id; } /** id **/ public void setId(Long id) { this.id = id; } /** 产品信息id productid **/ public Long getProductid() { return productid; } /** 产品信息id productid **/ public void setProductid(Long productid) { this.productid = productid; } /** 产品编码 itemcode **/ public String getItemcode() { return itemcode; } /** 产品编码 itemcode **/ public void setItemcode(String itemcode) { this.itemcode = itemcode == null ? null : itemcode.trim(); } /** 含药量限制 explosivecontent **/ public BigDecimal getExplosivecontent() { return explosivecontent; } /** 含药量限制 explosivecontent **/ public void setExplosivecontent(BigDecimal explosivecontent) { this.explosivecontent = explosivecontent; } /** 级别限制(ABCD级) level **/ public String getLevel() { return level; } /** 级别限制(ABCD级) level **/ public void setLevel(String level) { this.level = level == null ? null : level.trim(); } /** 箱数限制 boxnumber **/ public Integer getBoxnumber() { return boxnumber; } /** 箱数限制 boxnumber **/ public void setBoxnumber(Integer boxnumber) { this.boxnumber = boxnumber; } /** 创建人 createdby **/ public String getCreatedby() { return createdby; } /** 创建人 createdby **/ public void setCreatedby(String createdby) { this.createdby = createdby == null ? null : createdby.trim(); } /** 创建时间 createdat **/ public Date getCreatedat() { return createdat; } /** 创建时间 createdat **/ public void setCreatedat(Date createdat) { this.createdat = createdat; } }