From f65443d8abeaedc9d102324565e8368e7c9d90c8 Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:41:54 +0800 Subject: [PATCH] commit --- src/main/java/com/gk/firework/Domain/ProductThresholdInfo.java | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 119 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/ProductThresholdInfo.java b/src/main/java/com/gk/firework/Domain/ProductThresholdInfo.java new file mode 100644 index 0000000..6a88c6a --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/ProductThresholdInfo.java @@ -0,0 +1,119 @@ +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; + } +} -- Gitblit v1.9.2