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
package com.gk.firework.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import org.springframework.data.relational.core.mapping.Table;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
@TableName("historystock")
public class HistoryStock implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**   id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 企业ID  owner **/
    private Long owner;
 
    /** 企业名称  enterprisename **/
    private String enterprisename;
 
    /** 企业编号  enterprisenumber **/
    private String enterprisenumber;
 
    /** 企业类型  safetysupervision **/
    private String safetysupervision;
 
    /** 省  province **/
    private String province;
 
    /** 市  city **/
    private String city;
 
    /** 区  district **/
    private String district;
 
    /** 库存数量  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;
 
    /** 更新时间  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;
    }
 
    /**   更新时间  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;
    }
}