shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
 
package com.ishop.model.po;
 
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.walker.jdbc.BasePo;
 
/**
 * 表名:EB_PRODUCT_ATTR_VALUE *
 * @author genrator
 */
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public class EbProductAttrValue extends BasePo<EbProductAttrValue> {
    // 序列化版本号
    private static final long serialVersionUID = 1L;
 
    /**
     * 用于兼容老写法
     */
    @JsonIgnore
    public static final EbProductAttrValue ROW_MAPPER = new EbProductAttrValue();
 
    // 主键
    private Integer id = null;
    @JsonIgnore
    protected boolean isset_id = false;
 
    // 属性列表
    private Long productId = null;
    @JsonIgnore
    protected boolean isset_productId = false;
 
    private String sku = null;
    @JsonIgnore
    protected boolean isset_sku = false;
 
    private Integer stock = null;
    @JsonIgnore
    protected boolean isset_stock = false;
 
    private Integer sales = null;
    @JsonIgnore
    protected boolean isset_sales = false;
 
    private Double price = null;
    @JsonIgnore
    protected boolean isset_price = false;
 
    private String image = null;
    @JsonIgnore
    protected boolean isset_image = false;
 
    private Double cost = null;
    @JsonIgnore
    protected boolean isset_cost = false;
 
    private String barCode = null;
    @JsonIgnore
    protected boolean isset_barCode = false;
 
    private Double otPrice = null;
    @JsonIgnore
    protected boolean isset_otPrice = false;
 
    private Double weight = null;
    @JsonIgnore
    protected boolean isset_weight = false;
 
    private Double volume = null;
    @JsonIgnore
    protected boolean isset_volume = false;
 
    private Double brokerage = null;
    @JsonIgnore
    protected boolean isset_brokerage = false;
 
    private Double brokerageTwo = null;
    @JsonIgnore
    protected boolean isset_brokerageTwo = false;
 
    private Integer type = null;
    @JsonIgnore
    protected boolean isset_type = false;
 
    private Integer quota = null;
    @JsonIgnore
    protected boolean isset_quota = false;
 
    private Integer quotaShow = null;
    @JsonIgnore
    protected boolean isset_quotaShow = false;
 
    private String attrValue = null;
    @JsonIgnore
    protected boolean isset_attrValue = false;
 
    private Integer isDel = null;
    @JsonIgnore
    protected boolean isset_isDel = false;
 
    private Integer version = null;
    @JsonIgnore
    protected boolean isset_version = false;
 
    private Integer masterId = null;
    @JsonIgnore
    protected boolean isset_masterId = false;
 
    private Integer isCallback = null;
    @JsonIgnore
    protected boolean isset_isCallback = false;
 
    /**
     * 默认构造函数
     */
    public EbProductAttrValue() {
    }
 
    /**
     * 根据主键构造对象
     */
    public EbProductAttrValue(Integer id) {
        this.setId(id);
    }
 
    /**
     * 设置主键值
     */
    @Override
    public void setPkValue(Object value) {
        this.setId((Integer) value);
    }
 
    public Integer getId() {
        return this.id;
    }
 
    public void setId(Integer id) {
        this.id = id;
        this.isset_id = true;
    }
 
    @JsonIgnore
    public boolean isEmptyId() {
        return this.id == null;
    }
 
    public Long getProductId() {
        return this.productId;
    }
 
    public void setProductId(Long productId) {
        this.productId = productId;
        this.isset_productId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyProductId() {
        return this.productId == null;
    }
 
    public String getSku() {
        return this.sku;
    }
 
    public void setSku(String sku) {
        this.sku = sku;
        this.isset_sku = true;
    }
 
    @JsonIgnore
    public boolean isEmptySku() {
        return this.sku == null || this.sku.length() == 0;
    }
 
    public Integer getStock() {
        return this.stock;
    }
 
    public void setStock(Integer stock) {
        this.stock = stock;
        this.isset_stock = true;
    }
 
    @JsonIgnore
    public boolean isEmptyStock() {
        return this.stock == null;
    }
 
    public Integer getSales() {
        return this.sales;
    }
 
    public void setSales(Integer sales) {
        this.sales = sales;
        this.isset_sales = true;
    }
 
    @JsonIgnore
    public boolean isEmptySales() {
        return this.sales == null;
    }
 
    public Double getPrice() {
        return this.price;
    }
 
    public void setPrice(Double price) {
        this.price = price;
        this.isset_price = true;
    }
 
    @JsonIgnore
    public boolean isEmptyPrice() {
        return this.price == null;
    }
 
    public String getImage() {
        return this.image;
    }
 
    public void setImage(String image) {
        this.image = image;
        this.isset_image = true;
    }
 
    @JsonIgnore
    public boolean isEmptyImage() {
        return this.image == null || this.image.length() == 0;
    }
 
    public Double getCost() {
        return this.cost;
    }
 
    public void setCost(Double cost) {
        this.cost = cost;
        this.isset_cost = true;
    }
 
    @JsonIgnore
    public boolean isEmptyCost() {
        return this.cost == null;
    }
 
    public String getBarCode() {
        return this.barCode;
    }
 
    public void setBarCode(String barCode) {
        this.barCode = barCode;
        this.isset_barCode = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBarCode() {
        return this.barCode == null || this.barCode.length() == 0;
    }
 
    public Double getOtPrice() {
        return this.otPrice;
    }
 
    public void setOtPrice(Double otPrice) {
        this.otPrice = otPrice;
        this.isset_otPrice = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOtPrice() {
        return this.otPrice == null;
    }
 
    public Double getWeight() {
        return this.weight;
    }
 
    public void setWeight(Double weight) {
        this.weight = weight;
        this.isset_weight = true;
    }
 
    @JsonIgnore
    public boolean isEmptyWeight() {
        return this.weight == null;
    }
 
    public Double getVolume() {
        return this.volume;
    }
 
    public void setVolume(Double volume) {
        this.volume = volume;
        this.isset_volume = true;
    }
 
    @JsonIgnore
    public boolean isEmptyVolume() {
        return this.volume == null;
    }
 
    public Double getBrokerage() {
        return this.brokerage;
    }
 
    public void setBrokerage(Double brokerage) {
        this.brokerage = brokerage;
        this.isset_brokerage = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBrokerage() {
        return this.brokerage == null;
    }
 
    public Double getBrokerageTwo() {
        return this.brokerageTwo;
    }
 
    public void setBrokerageTwo(Double brokerageTwo) {
        this.brokerageTwo = brokerageTwo;
        this.isset_brokerageTwo = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBrokerageTwo() {
        return this.brokerageTwo == null;
    }
 
    public Integer getType() {
        return this.type;
    }
 
    public void setType(Integer type) {
        this.type = type;
        this.isset_type = true;
    }
 
    @JsonIgnore
    public boolean isEmptyType() {
        return this.type == null;
    }
 
    public Integer getQuota() {
        return this.quota;
    }
 
    public void setQuota(Integer quota) {
        this.quota = quota;
        this.isset_quota = true;
    }
 
    @JsonIgnore
    public boolean isEmptyQuota() {
        return this.quota == null;
    }
 
    public Integer getQuotaShow() {
        return this.quotaShow;
    }
 
    public void setQuotaShow(Integer quotaShow) {
        this.quotaShow = quotaShow;
        this.isset_quotaShow = true;
    }
 
    @JsonIgnore
    public boolean isEmptyQuotaShow() {
        return this.quotaShow == null;
    }
 
    public String getAttrValue() {
        return this.attrValue;
    }
 
    public void setAttrValue(String attrValue) {
        this.attrValue = attrValue;
        this.isset_attrValue = true;
    }
 
    @JsonIgnore
    public boolean isEmptyAttrValue() {
        return this.attrValue == null || this.attrValue.length() == 0;
    }
 
    public Integer getIsDel() {
        return this.isDel;
    }
 
    public void setIsDel(Integer isDel) {
        this.isDel = isDel;
        this.isset_isDel = true;
    }
 
    @JsonIgnore
    public boolean isEmptyIsDel() {
        return this.isDel == null;
    }
 
    public Integer getVersion() {
        return this.version;
    }
 
    public void setVersion(Integer version) {
        this.version = version;
        this.isset_version = true;
    }
 
    @JsonIgnore
    public boolean isEmptyVersion() {
        return this.version == null;
    }
 
    public Integer getMasterId() {
        return this.masterId;
    }
 
    public void setMasterId(Integer masterId) {
        this.masterId = masterId;
        this.isset_masterId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyMasterId() {
        return this.masterId == null;
    }
 
    public Integer getIsCallback() {
        return this.isCallback;
    }
 
    public void setIsCallback(Integer isCallback) {
        this.isCallback = isCallback;
        this.isset_isCallback = true;
    }
 
    @JsonIgnore
    public boolean isEmptyIsCallback() {
        return this.isCallback == null;
    }
 
    /**
     * 重写 toString() 方法
     */
    @Override
    public String toString() {
        return new StringBuilder()
                .append("id=").append(this.id)
                .append("productId=").append(this.productId)
                .append("sku=").append(this.sku)
                .append("stock=").append(this.stock)
                .append("sales=").append(this.sales)
                .append("price=").append(this.price)
                .append("image=").append(this.image)
                .append("cost=").append(this.cost)
                .append("barCode=").append(this.barCode)
                .append("otPrice=").append(this.otPrice)
                .append("weight=").append(this.weight)
                .append("volume=").append(this.volume)
                .append("brokerage=").append(this.brokerage)
                .append("brokerageTwo=").append(this.brokerageTwo)
                .append("type=").append(this.type)
                .append("quota=").append(this.quota)
                .append("quotaShow=").append(this.quotaShow)
                .append("attrValue=").append(this.attrValue)
                .append("isDel=").append(this.isDel)
                .append("version=").append(this.version)
                .append("masterId=").append(this.masterId)
                .append("isCallback=").append(this.isCallback)
                .toString();
    }
 
    /**
     * 克隆
     */
    public EbProductAttrValue $clone() {
        EbProductAttrValue eb_product_attr_value = new EbProductAttrValue();
 
        // 数据库名称
        //eb_product_attr_value.setDatabaseName_(this.getDatabaseName_());
 
        // 主键
        if (this.isset_id) {
            eb_product_attr_value.setId(this.getId());
        }
        // 普通属性
        if (this.isset_productId) {
            eb_product_attr_value.setProductId(this.getProductId());
        }
        if (this.isset_sku) {
            eb_product_attr_value.setSku(this.getSku());
        }
        if (this.isset_stock) {
            eb_product_attr_value.setStock(this.getStock());
        }
        if (this.isset_sales) {
            eb_product_attr_value.setSales(this.getSales());
        }
        if (this.isset_price) {
            eb_product_attr_value.setPrice(this.getPrice());
        }
        if (this.isset_image) {
            eb_product_attr_value.setImage(this.getImage());
        }
        if (this.isset_cost) {
            eb_product_attr_value.setCost(this.getCost());
        }
        if (this.isset_barCode) {
            eb_product_attr_value.setBarCode(this.getBarCode());
        }
        if (this.isset_otPrice) {
            eb_product_attr_value.setOtPrice(this.getOtPrice());
        }
        if (this.isset_weight) {
            eb_product_attr_value.setWeight(this.getWeight());
        }
        if (this.isset_volume) {
            eb_product_attr_value.setVolume(this.getVolume());
        }
        if (this.isset_brokerage) {
            eb_product_attr_value.setBrokerage(this.getBrokerage());
        }
        if (this.isset_brokerageTwo) {
            eb_product_attr_value.setBrokerageTwo(this.getBrokerageTwo());
        }
        if (this.isset_type) {
            eb_product_attr_value.setType(this.getType());
        }
        if (this.isset_quota) {
            eb_product_attr_value.setQuota(this.getQuota());
        }
        if (this.isset_quotaShow) {
            eb_product_attr_value.setQuotaShow(this.getQuotaShow());
        }
        if (this.isset_attrValue) {
            eb_product_attr_value.setAttrValue(this.getAttrValue());
        }
        if (this.isset_isDel) {
            eb_product_attr_value.setIsDel(this.getIsDel());
        }
        if (this.isset_version) {
            eb_product_attr_value.setVersion(this.getVersion());
        }
        if (this.isset_masterId) {
            eb_product_attr_value.setMasterId(this.getMasterId());
        }
        if (this.isset_isCallback) {
            eb_product_attr_value.setIsCallback(this.getIsCallback());
        }
        return eb_product_attr_value;
    }
}