Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
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;
    }
 
}