郑永安
2023-06-19 f65443d8abeaedc9d102324565e8368e7c9d90c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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;
    }
}