liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
package com.landy.gum.base.model;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
 
import com.landy.framework.core.model.BaseModel;
 
/**
 * Model class for BbStuff
 */
@Entity
@Table(name = "bb_stuff")
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class BbStuffModel extends BaseModel {
 
    //id-----bbst_id
    private Integer bbstId;
    //分类_id------bbst_bbbr_id
    private Integer bbstBbbrId;
    //名称------bbst_name
    private String bbstName;
    //别名/简称------bbst_brief_name
    private String bbstBriefName;
    //规格型号------bbst_style
    private String bbstStyle;
    //克重------bbst_grammage
    private String bbstGrammage;
    //材料基本类别-----bbst_sydi_id
    private Integer bbstSydiId;
    //第一单位------bbst_first_unit
    private String bbstFirstUnit;
    //数量------bbst_amount
    private Double bbstAmount;
    //废品数------bbst_reject_amount
    private Double bbstRejectAmount;
    //占用数------bbst_occuption
    private Double bbstOccuption;
    //第二单位(卷)------bbst_sec_unit
    private String bbstSecUnit;
    //卷数------bbst_sec_amount
    private Integer bbstSecAmount;
    //数量上限------bbst_max
    private Integer bbstMax;
    //数量下限------bbst_min
    private Integer bbstMin;
    //备注------bbst_remark
    private String bbstRemark;
 
    /**
     * Get id-----bbst_id
     */
    @Column(name = "bbst_id")
    @Id @GeneratedValue(strategy=GenerationType.AUTO)
    public Integer getBbstId() {
        return bbstId;
    }
 
    /**
     * Set id-----bbst_id
     */
    public void setBbstId(Integer bbstId) {
        this.bbstId = bbstId;
        addValidField("bbstId");
    }
 
    /**
     * Get 分类_id------bbst_bbbr_id
     */
    @Column(name = "bbst_bbbr_id")
    public Integer getBbstBbbrId() {
        return bbstBbbrId;
    }
 
    /**
     * Set 分类_id------bbst_bbbr_id
     */
    public void setBbstBbbrId(Integer bbstBbbrId) {
        this.bbstBbbrId = bbstBbbrId;
        addValidField("bbstBbbrId");
    }
 
    /**
     * Get 名称------bbst_name
     */
    @Column(name = "bbst_name")
    public String getBbstName() {
        return bbstName;
    }
 
    /**
     * Set 名称------bbst_name
     */
    public void setBbstName(String bbstName) {
        this.bbstName = bbstName;
        addValidField("bbstName");
    }
 
    /**
     * Get 别名/简称------bbst_brief_name
     */
    @Column(name = "bbst_brief_name")
    public String getBbstBriefName() {
        return bbstBriefName;
    }
 
    /**
     * Set 别名/简称------bbst_brief_name
     */
    public void setBbstBriefName(String bbstBriefName) {
        this.bbstBriefName = bbstBriefName;
        addValidField("bbstBriefName");
    }
 
    /**
     * Get 规格型号------bbst_style
     */
    @Column(name = "bbst_style")
    public String getBbstStyle() {
        return bbstStyle;
    }
 
    /**
     * Set 规格型号------bbst_style
     */
    public void setBbstStyle(String bbstStyle) {
        this.bbstStyle = bbstStyle;
        addValidField("bbstStyle");
    }
 
    /**
     * Get 克重------bbst_grammage
     */
    @Column(name = "bbst_grammage")
    public String getBbstGrammage() {
        return bbstGrammage;
    }
 
    /**
     * Set 克重------bbst_grammage
     */
    public void setBbstGrammage(String bbstGrammage) {
        this.bbstGrammage = bbstGrammage;
        addValidField("bbstGrammage");
    }
 
    /**
     * Get 材料基本类别-----bbst_sydi_id
     */
    @Column(name = "bbst_sydi_id")
    public Integer getBbstSydiId() {
        return bbstSydiId;
    }
 
    /**
     * Set 材料基本类别-----bbst_sydi_id
     */
    public void setBbstSydiId(Integer bbstSydiId) {
        this.bbstSydiId = bbstSydiId;
        addValidField("bbstSydiId");
    }
 
    /**
     * Get 第一单位------bbst_first_unit
     */
    @Column(name = "bbst_first_unit")
    public String getBbstFirstUnit() {
        return bbstFirstUnit;
    }
 
    /**
     * Set 第一单位------bbst_first_unit
     */
    public void setBbstFirstUnit(String bbstFirstUnit) {
        this.bbstFirstUnit = bbstFirstUnit;
        addValidField("bbstFirstUnit");
    }
 
    /**
     * Get 数量------bbst_amount
     */
    @Column(name = "bbst_amount")
    public Double getBbstAmount() {
        return bbstAmount;
    }
 
    /**
     * Set 数量------bbst_amount
     */
    public void setBbstAmount(Double bbstAmount) {
        this.bbstAmount = bbstAmount;
        addValidField("bbstAmount");
    }
 
    /**
     * Get 废品数------bbst_reject_amount
     */
    @Column(name = "bbst_reject_amount")
    public Double getBbstRejectAmount() {
        return bbstRejectAmount;
    }
 
    /**
     * Set 废品数------bbst_reject_amount
     */
    public void setBbstRejectAmount(Double bbstRejectAmount) {
        this.bbstRejectAmount = bbstRejectAmount;
        addValidField("bbstRejectAmount");
    }
 
    /**
     * Get 占用数------bbst_occuption
     */
    @Column(name = "bbst_occuption")
    public Double getBbstOccuption() {
        return bbstOccuption;
    }
 
    /**
     * Set 占用数------bbst_occuption
     */
    public void setBbstOccuption(Double bbstOccuption) {
        this.bbstOccuption = bbstOccuption;
        addValidField("bbstOccuption");
    }
 
    /**
     * Get 第二单位(卷)------bbst_sec_unit
     */
    @Column(name = "bbst_sec_unit")
    public String getBbstSecUnit() {
        return bbstSecUnit;
    }
 
    /**
     * Set 第二单位(卷)------bbst_sec_unit
     */
    public void setBbstSecUnit(String bbstSecUnit) {
        this.bbstSecUnit = bbstSecUnit;
        addValidField("bbstSecUnit");
    }
 
    /**
     * Get 卷数------bbst_sec_amount
     */
    @Column(name = "bbst_sec_amount")
    public Integer getBbstSecAmount() {
        return bbstSecAmount;
    }
 
    /**
     * Set 卷数------bbst_sec_amount
     */
    public void setBbstSecAmount(Integer bbstSecAmount) {
        this.bbstSecAmount = bbstSecAmount;
        addValidField("bbstSecAmount");
    }
 
    /**
     * Get 数量上限------bbst_max
     */
    @Column(name = "bbst_max")
    public Integer getBbstMax() {
        return bbstMax;
    }
 
    /**
     * Set 数量上限------bbst_max
     */
    public void setBbstMax(Integer bbstMax) {
        this.bbstMax = bbstMax;
        addValidField("bbstMax");
    }
 
    /**
     * Get 数量下限------bbst_min
     */
    @Column(name = "bbst_min")
    public Integer getBbstMin() {
        return bbstMin;
    }
 
    /**
     * Set 数量下限------bbst_min
     */
    public void setBbstMin(Integer bbstMin) {
        this.bbstMin = bbstMin;
        addValidField("bbstMin");
    }
 
    /**
     * Get 备注------bbst_remark
     */
    @Column(name = "bbst_remark")
    public String getBbstRemark() {
        return bbstRemark;
    }
 
    /**
     * Set 备注------bbst_remark
     */
    public void setBbstRemark(String bbstRemark) {
        this.bbstRemark = bbstRemark;
        addValidField("bbstRemark");
    }
 
}