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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
package com.landy.gum.base.model;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
 
import com.landy.framework.core.model.BaseModel;
import com.landy.framework.core.model.OperationLog;
 
/**
 * Model class for BbProduct
 */
@Entity
@Table(name = "bb_product")
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class BbProductModel extends BaseModel implements OperationLog {
 
    //id-----bbpr_id
    private String bbprId;
    //产品编码-----bbpr_sn
    private String bbprSn;
    //中文名称-----bbpr_name
    private String bbprName;
    //英文名称-----bbpr_en_name
    private String bbprEnName;
    //单位编码-----bbpr_unit
    private String bbprUnit;
    //产品规格-----bbpr_style
    private String bbprStyle;
    //品牌编码-----bbpr_pin_pai
    private String bbprBrand;
    //产品属性编码-----bbpr_shu_xing
    private String bbprAttribute;
    //产品用途编码-----bbpr_yong_tu
    private String bbprUse;
    //产品系列编码-----bbpr_xi_lie
    private String bbprSeries;
    //产品销售属性-----bbpr_sale_shu_xing
    private String bbprSaleable;
    //订购数量限制-----bbpr_limit_size
    private Double bbprPurchaseMax;
    //产品库存上限-----bbpr_max_size
    private Double bbprInventoryMax;
    //产品库存下限-----bbpr_min_size
    private Double bbprInventoryMin;
    //零售价-----bbpr_price_market
    private Double bbprSalePrice;
    //是否纳入社保-----bbpr_is_she_bao
    private String bbprIntoSocialSecurity;
    //产品状态-----bbpr_state
    private String bbprState;
    //是否可领用-----bbpr_is_pick
    private String bbprPickable;
    //商品描述-----bbpr_desc
    private String bbprDesc;
    //商品附件-----bbpr_syacc_ids
    private String bbprSyaccIds;
    //医院ID-----bbpr_locationid
    private Integer bbprLocationid;
    //类别ID-----bbpr_bbbr_id
    private Integer bbprBbbrId;
    //creator
    private String creator;
    //createTime
    private Date createTime;
    //modifier
    private String modifier;
    //modifyTime
    private Date modifyTime;
    //产品描述
    private String bbprRemark;
    //产品分类
    private Integer bbprSydiId;
    //耗材管理模式
    private String bbprManagementModel;
    //是否库存管理
    private String bbprIntoInventoryManage;
    //产品码
    private String bbprCode;
    //产品备用码1
    private String bbprCode1;
    //产品备用码2
    private String bbprCode2;
 
    /**
     * Get id-----bbpr_id
     */
    @Column(name = "bbpr_id")
    @Id @GeneratedValue(generator = "UUIDGenerator")
    public String getBbprId() {
        return bbprId;
    }
 
    /**
     * Set id-----bbpr_id
     */
    public void setBbprId(String bbprId) {
        this.bbprId = bbprId;
        addValidField("bbprId");
    }
 
    /**
     * Get 产品编码-----bbpr_sn
     */
    @Column(name = "bbpr_sn")
    public String getBbprSn() {
        return bbprSn;
    }
 
    /**
     * Set 产品编码-----bbpr_sn
     */
    public void setBbprSn(String bbprSn) {
        this.bbprSn = bbprSn;
        addValidField("bbprSn");
    }
 
    /**
     * Get 中文名称-----bbpr_name
     */
    @Column(name = "bbpr_name")
    public String getBbprName() {
        return bbprName;
    }
 
    /**
     * Set 中文名称-----bbpr_name
     */
    public void setBbprName(String bbprName) {
        this.bbprName = bbprName;
        addValidField("bbprName");
    }
 
    /**
     * Get 英文名称-----bbpr_en_name
     */
    @Column(name = "bbpr_en_name")
    public String getBbprEnName() {
        return bbprEnName;
    }
 
    /**
     * Set 英文名称-----bbpr_en_name
     */
    public void setBbprEnName(String bbprEnName) {
        this.bbprEnName = bbprEnName;
        addValidField("bbprEnName");
    }
 
    /**
     * Get 单位编码-----bbpr_unit
     */
    @Column(name = "bbpr_unit")
    public String getBbprUnit() {
        return bbprUnit;
    }
 
    /**
     * Set 单位编码-----bbpr_unit
     */
    public void setBbprUnit(String bbprUnit) {
        this.bbprUnit = bbprUnit;
        addValidField("bbprUnit");
    }
 
    /**
     * Get 产品规格-----bbpr_style
     */
    @Column(name = "bbpr_style")
    public String getBbprStyle() {
        return bbprStyle;
    }
 
    /**
     * Set 产品规格-----bbpr_style
     */
    public void setBbprStyle(String bbprStyle) {
        this.bbprStyle = bbprStyle;
        addValidField("bbprStyle");
    }
 
    /**
     * Get 品牌编码-----bbpr_pin_pai
     */
    @Column(name = "bbpr_brand")
    public String getBbprBrand() {
        return bbprBrand;
    }
 
    /**
     * Set 品牌编码-----bbpr_pin_pai
     */
    public void setBbprBrand(String bbprBrand) {
        this.bbprBrand = bbprBrand;
        addValidField("bbprBrand");
    }
 
    /**
     * Get 产品属性编码-----bbpr_shu_xing
     */
    @Column(name = "bbpr_attribute")
    public String getBbprAttribute() {
        return bbprAttribute;
    }
 
    /**
     * Set 产品属性编码-----bbpr_shu_xing
     */
    public void setBbprAttribute(String bbprAttribute) {
        this.bbprAttribute = bbprAttribute;
        addValidField("bbprAttribute");
    }
 
    /**
     * Get 产品用途编码-----bbpr_yong_tu
     */
    @Column(name = "bbpr_use")
    public String getBbprUse() {
        return bbprUse;
    }
 
    /**
     * Set 产品用途编码-----bbpr_yong_tu
     */
    public void setBbprUse(String bbprUse) {
        this.bbprUse = bbprUse;
        addValidField("bbprUse");
    }
 
    /**
     * Get 产品系列编码-----bbpr_xi_lie
     */
    @Column(name = "bbpr_series")
    public String getBbprSeries() {
        return bbprSeries;
    }
 
    /**
     * Set 产品系列编码-----bbpr_xi_lie
     */
    public void setBbprSeries(String bbprSeries) {
        this.bbprSeries = bbprSeries;
        addValidField("bbprSeries");
    }
 
    /**
     * Get 产品销售属性-----bbpr_sale_shu_xing
     */
    @Column(name = "bbpr_saleable")
    public String getBbprSaleable() {
        return bbprSaleable;
    }
 
    /**
     * Set 产品销售属性-----bbpr_sale_shu_xing
     */
    public void setBbprSaleable(String bbprSaleable) {
        this.bbprSaleable = bbprSaleable;
        addValidField("bbprSaleable");
    }
 
    /**
     * Get 订购数量限制-----bbpr_limit_size
     */
    @Column(name = "bbpr_purchase_max")
    public Double getBbprPurchaseMax() {
        return bbprPurchaseMax;
    }
 
    /**
     * Set 订购数量限制-----bbpr_limit_size
     */
    public void setBbprPurchaseMax(Double bbprPurchaseMax) {
        this.bbprPurchaseMax = bbprPurchaseMax;
        addValidField("bbprPurchaseMax");
    }
 
    /**
     * Get 产品库存上限-----bbpr_max_size
     */
    @Column(name = "bbpr_inventory_max")
    public Double getBbprInventoryMax() {
        return bbprInventoryMax;
    }
 
    /**
     * Set 产品库存上限-----bbpr_max_size
     */
    public void setBbprInventoryMax(Double bbprInventoryMax) {
        this.bbprInventoryMax = bbprInventoryMax;
        addValidField("bbprInventoryMax");
    }
 
    /**
     * Get 产品库存下限-----bbpr_min_size
     */
    @Column(name = "bbpr_inventory_min")
    public Double getBbprInventoryMin() {
        return bbprInventoryMin;
    }
 
    /**
     * Set 产品库存下限-----bbpr_min_size
     */
    public void setBbprInventoryMin(Double bbprInventoryMin) {
        this.bbprInventoryMin = bbprInventoryMin;
        addValidField("bbprInventoryMin");
    }
 
    /**
     * Get 零售价-----bbpr_price_market
     */
    @Column(name = "bbpr_sale_price")
    public Double getBbprSalePrice() {
        return bbprSalePrice;
    }
 
    /**
     * Set 零售价-----bbpr_price_market
     */
    public void setBbprSalePrice(Double bbprSalePrice) {
        this.bbprSalePrice = bbprSalePrice;
        addValidField("bbprSalePrice");
    }
 
    /**
     * Get 是否纳入社保-----bbpr_is_she_bao
     */
    @Column(name = "bbpr_into_social_security")
    public String getBbprIntoSocialSecurity() {
        return bbprIntoSocialSecurity;
    }
 
    /**
     * Set 是否纳入社保-----bbpr_is_she_bao
     */
    public void setBbprIntoSocialSecurity(String bbprIntoSocialSecurity) {
        this.bbprIntoSocialSecurity = bbprIntoSocialSecurity;
        addValidField("bbprIntoSocialSecurity");
    }
 
    /**
     * Get 产品状态-----bbpr_state
     */
    @Column(name = "bbpr_state")
    public String getBbprState() {
        return bbprState;
    }
 
    /**
     * Set 产品状态-----bbpr_state
     */
    public void setBbprState(String bbprState) {
        this.bbprState = bbprState;
        addValidField("bbprState");
    }
 
    /**
     * Get 是否可领用-----bbpr_is_pick
     */
    @Column(name = "bbpr_pickable")
    public String getBbprPickable() {
        return bbprPickable;
    }
 
    /**
     * Set 是否可领用-----bbpr_is_pick
     */
    public void setBbprPickable(String bbprPickable) {
        this.bbprPickable = bbprPickable;
        addValidField("bbprPickable");
    }
 
    /**
     * Get 商品描述-----bbpr_desc
     */
    @Column(name = "bbpr_desc")
    public String getBbprDesc() {
        return bbprDesc;
    }
 
    /**
     * Set 商品描述-----bbpr_desc
     */
    public void setBbprDesc(String bbprDesc) {
        this.bbprDesc = bbprDesc;
        addValidField("bbprDesc");
    }
 
    /**
     * Get 商品附件-----bbpr_syacc_ids
     */
    @Column(name = "bbpr_syacc_ids")
    public String getBbprSyaccIds() {
        return bbprSyaccIds;
    }
 
    /**
     * Set 商品附件-----bbpr_syacc_ids
     */
    public void setBbprSyaccIds(String bbprSyaccIds) {
        this.bbprSyaccIds = bbprSyaccIds;
        addValidField("bbprSyaccIds");
    }
 
    /**
     * Get 医院ID-----bbpr_locationid
     */
    @Column(name = "bbpr_locationid")
    public Integer getBbprLocationid() {
        return bbprLocationid;
    }
 
    /**
     * Set 医院ID-----bbpr_locationid
     */
    public void setBbprLocationid(Integer bbprLocationid) {
        this.bbprLocationid = bbprLocationid;
        addValidField("bbprLocationid");
    }
 
    /**
     * Get 类别ID-----bbpr_bbbr_id
     */
    @Column(name = "bbpr_bbbr_id")
    public Integer getBbprBbbrId() {
        return bbprBbbrId;
    }
 
    /**
     * Set 类别ID-----bbpr_bbbr_id
     */
    public void setBbprBbbrId(Integer bbprBbbrId) {
        this.bbprBbbrId = bbprBbbrId;
        addValidField("bbprBbbrId");
    }
 
    /**
     * Get creator
     */
    @Column(name = "creator")
    public String getCreator() {
        return creator;
    }
 
    /**
     * Set creator
     */
    public void setCreator(String creator) {
        this.creator = creator;
        addValidField("creator");
    }
 
    /**
     * Get createTime
     */
    @Column(name = "create_time")
    public Date getCreateTime() {
        return createTime;
    }
 
    /**
     * Set createTime
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
        addValidField("createTime");
    }
 
    /**
     * Get modifier
     */
    @Column(name = "modifier")
    public String getModifier() {
        return modifier;
    }
 
    /**
     * Set modifier
     */
    public void setModifier(String modifier) {
        this.modifier = modifier;
        addValidField("modifier");
    }
 
    /**
     * Get modifyTime
     */
    @Column(name = "modify_time")
    public Date getModifyTime() {
        return modifyTime;
    }
 
    /**
     * Set modifyTime
     */
    public void setModifyTime(Date modifyTime) {
        this.modifyTime = modifyTime;
        addValidField("modifyTime");
    }
 
    /**
     * Get 产品描述
     */
    @Column(name = "bbpr_remark")
    public String getBbprRemark() {
        return bbprRemark;
    }
 
    /**
     * Set 产品描述
     */
    public void setBbprRemark(String bbprRemark) {
        this.bbprRemark = bbprRemark;
        addValidField("bbprRemark");
    }
 
    /**
     * Get 产品分类
     */
    @Column(name = "bbpr_sydi_id")
    public Integer getBbprSydiId() {
        return bbprSydiId;
    }
 
    /**
     * Set 产品分类
     */
    public void setBbprSydiId(Integer bbprSydiId) {
        this.bbprSydiId = bbprSydiId;
        addValidField("bbprSydiId");
    }
 
    /**
     * Get 耗材管理模式
     */
    @Column(name = "bbpr_management_model")
    public String getBbprManagementModel() {
        return bbprManagementModel;
    }
 
    /**
     * Set 耗材管理模式
     */
    public void setBbprManagementModel(String bbprManagementModel) {
        this.bbprManagementModel = bbprManagementModel;
        addValidField("bbprManagementModel");
    }
 
    /**
     * Get 是否库存管理
     */
    @Column(name = "bbpr_into_inventory_manage")
    public String getBbprIntoInventoryManage() {
        return bbprIntoInventoryManage;
    }
 
    /**
     * Set 是否库存管理
     */
    public void setBbprIntoInventoryManage(String bbprIntoInventoryManage) {
        this.bbprIntoInventoryManage = bbprIntoInventoryManage;
        addValidField("bbprIntoInventoryManage");
    }
 
    /**
     * Get 产品码
     */
    @Column(name = "bbpr_code")
    public String getBbprCode() {
        return bbprCode;
    }
 
    /**
     * Set 产品码
     */
    public void setBbprCode(String bbprCode) {
        this.bbprCode = bbprCode;
        addValidField("bbprCode");
    }
 
    /**
     * Get 产品备用码1
     */
    @Column(name = "bbpr_code1")
    public String getBbprCode1() {
        return bbprCode1;
    }
 
    /**
     * Set 产品备用码1
     */
    public void setBbprCode1(String bbprCode1) {
        this.bbprCode1 = bbprCode1;
        addValidField("bbprCode1");
    }
 
    /**
     * Get 产品备用码2
     */
    @Column(name = "bbpr_code2")
    public String getBbprCode2() {
        return bbprCode2;
    }
 
    /**
     * Set 产品备用码2
     */
    public void setBbprCode2(String bbprCode2) {
        this.bbprCode2 = bbprCode2;
        addValidField("bbprCode2");
    }
 
}