郑永安
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
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.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
@TableName(value = "productcode")
public class ProductCodeInfo implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    /**   id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 合同单号  ordercode **/
    private String ordercode;
 
    /** 外包装箱码  originalcode **/
    private String originalcode;
 
    /** 产品名称  itemname **/
    private String itemname;
 
    /** 生产厂家  manufacturer **/
    private String manufacturer;
 
    /** 含药量(一般为数字,部分含有单位)  explosivecontent **/
    private String explosivecontent;
 
    /** 箱数(正整数)  boxnumber **/
    private Integer boxnumber;
 
    /** (烟花爆竹)类型(爆竹类,单个爆竹类,喷花类,日景烟花,吐珠类,造型玩具类,玩具烟花类,线香类,组合类,组合烟花,组合烟花类,组合盆花类,鞭炮类,火箭类,旋转类,升空类,旋转升空类,冷光类,烟雾类,摩擦类,小礼花类,礼花弹类,架子烟类,引火线,黑火药,烟火药,氯酸钾,精品礼品箱类,彩箱烟花类,单个爆竹类,玩具类,同类组合烟花)  type **/
    private String type;
 
    /** 产品等级(ABCD级)  level **/
    private String level;
 
    /** 创建人  createdby **/
    private String createdby;
 
    /** 创建时间  createddate **/
    private Date createddate;
 
    //单箱进价
    private BigDecimal price;
 
    private Byte isdel;
 
    /**   id  id   **/
    public Long getId() {
        return id;
    }
 
    /**   id  id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   合同单号  ordercode   **/
    public String getOrdercode() {
        return ordercode;
    }
 
    /**   合同单号  ordercode   **/
    public void setOrdercode(String ordercode) {
        this.ordercode = ordercode == null ? null : ordercode.trim();
    }
 
    /**   外包装箱码  originalcode   **/
    public String getOriginalcode() {
        return originalcode;
    }
 
    /**   外包装箱码  originalcode   **/
    public void setOriginalcode(String originalcode) {
        this.originalcode = originalcode == null ? null : originalcode.trim();
    }
 
    /**   产品名称  itemname   **/
    public String getItemname() {
        return itemname;
    }
 
    /**   产品名称  itemname   **/
    public void setItemname(String itemname) {
        this.itemname = itemname == null ? null : itemname.trim();
    }
 
    /**   生产厂家  manufacturer   **/
    public String getManufacturer() {
        return manufacturer;
    }
 
    /**   生产厂家  manufacturer   **/
    public void setManufacturer(String manufacturer) {
        this.manufacturer = manufacturer == null ? null : manufacturer.trim();
    }
 
    /**   含药量(一般为数字,部分含有单位)  explosivecontent   **/
    public String getExplosivecontent() {
        return explosivecontent;
    }
 
    /**   含药量(一般为数字,部分含有单位)  explosivecontent   **/
    public void setExplosivecontent(String explosivecontent) {
        this.explosivecontent = explosivecontent == null ? null : explosivecontent.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();
    }
 
    /**   创建时间  createddate   **/
    public Date getCreateddate() {
        return createddate;
    }
 
    /**   创建时间  createddate   **/
    public void setCreateddate(Date createddate) {
        this.createddate = createddate;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getLevel() {
        return level;
    }
 
    public void setLevel(String level) {
        this.level = level;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public Byte getIsdel() {
        return isdel;
    }
 
    public void setIsdel(Byte isdel) {
        this.isdel = isdel;
    }
}