杨凯
2023-10-18 caf451f76ac30aa222230e0bc2d0d7cb9f420bdf
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
 
package com.consum.model.po;
 
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.walker.jdbc.BasePo;
 
/**
 * 表名:DEP_FORM_SCRAPPED_GOODS *
 * @author genrator
 */
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public class DepFormScrappedGoods extends BasePo<DepFormScrappedGoods> {
    // 序列化版本号
    private static final long serialVersionUID = 1L;
 
    // 主键
    private Long id = null;
    @JsonIgnore
    protected boolean isset_id = false;
 
    // 属性列表
    private Long baseGoodsTemplateId = null;
    @JsonIgnore
    protected boolean isset_baseGoodsTemplateId = false;
 
    private String goodsTemplateName = null;
    @JsonIgnore
    protected boolean isset_goodsTemplateName = false;
 
    private String unit = null;
    @JsonIgnore
    protected boolean isset_unit = false;
 
    private Long baseGoodsModelsId = null;
    @JsonIgnore
    protected boolean isset_baseGoodsModelsId = false;
 
    private String baseGoodsModelsName = null;
    @JsonIgnore
    protected boolean isset_baseGoodsModelsName = false;
 
    private Integer scrappedCounts = null;
    @JsonIgnore
    protected boolean isset_scrappedCounts = false;
 
    private Integer initCount = null;
    @JsonIgnore
    protected boolean isset_initCount = false;
 
    private Long depFormScrappedId = null;
    @JsonIgnore
    protected boolean isset_depFormScrappedId = false;
 
    private String beiz = null;
    @JsonIgnore
    protected boolean isset_beiz = false;
 
    private String scrappedCode = null;
    @JsonIgnore
    protected boolean isset_scrappedCode = false;
 
    private String scrappedName = null;
    @JsonIgnore
    protected boolean isset_scrappedName = false;
 
    private Long depFormLendingGoodsId = null;
    @JsonIgnore
    protected boolean isset_depFormLendingGoodsId = false;
 
    private Long depFormLendingId = null;
    @JsonIgnore
    protected boolean isset_depFormLendingId = false;
 
    /**
     * 默认构造函数
     */
    public DepFormScrappedGoods() {
    }
 
    /**
     * 根据主键构造对象
     */
    public DepFormScrappedGoods(Long id) {
        this.setId(id);
    }
 
    /**
     * 设置主键值
     */
    @Override
    public void setPkValue(Object value) {
        this.setId((Long) value);
    }
 
    public Long getId() {
        return this.id;
    }
 
    public void setId(Long id) {
        this.id = id;
        this.isset_id = true;
    }
 
    @JsonIgnore
    public boolean isEmptyId() {
        return this.id == null;
    }
 
    public Long getBaseGoodsTemplateId() {
        return this.baseGoodsTemplateId;
    }
 
    public void setBaseGoodsTemplateId(Long baseGoodsTemplateId) {
        this.baseGoodsTemplateId = baseGoodsTemplateId;
        this.isset_baseGoodsTemplateId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBaseGoodsTemplateId() {
        return this.baseGoodsTemplateId == null;
    }
 
    public String getGoodsTemplateName() {
        return this.goodsTemplateName;
    }
 
    public void setGoodsTemplateName(String goodsTemplateName) {
        this.goodsTemplateName = goodsTemplateName;
        this.isset_goodsTemplateName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyGoodsTemplateName() {
        return this.goodsTemplateName == null || this.goodsTemplateName.length() == 0;
    }
 
    public String getUnit() {
        return this.unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
        this.isset_unit = true;
    }
 
    @JsonIgnore
    public boolean isEmptyUnit() {
        return this.unit == null || this.unit.length() == 0;
    }
 
    public Long getBaseGoodsModelsId() {
        return this.baseGoodsModelsId;
    }
 
    public void setBaseGoodsModelsId(Long baseGoodsModelsId) {
        this.baseGoodsModelsId = baseGoodsModelsId;
        this.isset_baseGoodsModelsId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBaseGoodsModelsId() {
        return this.baseGoodsModelsId == null;
    }
 
    public String getBaseGoodsModelsName() {
        return this.baseGoodsModelsName;
    }
 
    public void setBaseGoodsModelsName(String baseGoodsModelsName) {
        this.baseGoodsModelsName = baseGoodsModelsName;
        this.isset_baseGoodsModelsName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBaseGoodsModelsName() {
        return this.baseGoodsModelsName == null || this.baseGoodsModelsName.length() == 0;
    }
 
    public Integer getScrappedCounts() {
        return this.scrappedCounts;
    }
 
    public void setScrappedCounts(Integer scrappedCounts) {
        this.scrappedCounts = scrappedCounts;
        this.isset_scrappedCounts = true;
    }
 
    @JsonIgnore
    public boolean isEmptyScrappedCounts() {
        return this.scrappedCounts == null;
    }
 
    public Integer getInitCount() {
        return this.initCount;
    }
 
    public void setInitCount(Integer initCount) {
        this.initCount = initCount;
        this.isset_initCount = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInitCount() {
        return this.initCount == null;
    }
 
    public Long getDepFormScrappedId() {
        return this.depFormScrappedId;
    }
 
    public void setDepFormScrappedId(Long depFormScrappedId) {
        this.depFormScrappedId = depFormScrappedId;
        this.isset_depFormScrappedId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyDepFormScrappedId() {
        return this.depFormScrappedId == null;
    }
 
    public String getBeiz() {
        return this.beiz;
    }
 
    public void setBeiz(String beiz) {
        this.beiz = beiz;
        this.isset_beiz = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBeiz() {
        return this.beiz == null || this.beiz.length() == 0;
    }
 
    public String getScrappedCode() {
        return this.scrappedCode;
    }
 
    public void setScrappedCode(String scrappedCode) {
        this.scrappedCode = scrappedCode;
        this.isset_scrappedCode = true;
    }
 
    @JsonIgnore
    public boolean isEmptyScrappedCode() {
        return this.scrappedCode == null || this.scrappedCode.length() == 0;
    }
 
    public String getScrappedName() {
        return this.scrappedName;
    }
 
    public void setScrappedName(String scrappedName) {
        this.scrappedName = scrappedName;
        this.isset_scrappedName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyScrappedName() {
        return this.scrappedName == null || this.scrappedName.length() == 0;
    }
 
    public Long getDepFormLendingGoodsId() {
        return this.depFormLendingGoodsId;
    }
 
    public void setDepFormLendingGoodsId(Long depFormLendingGoodsId) {
        this.depFormLendingGoodsId = depFormLendingGoodsId;
        this.isset_depFormLendingGoodsId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyDepFormLendingGoodsId() {
        return this.depFormLendingGoodsId == null;
    }
 
    public Long getDepFormLendingId() {
        return this.depFormLendingId;
    }
 
    public void setDepFormLendingId(Long depFormLendingId) {
        this.depFormLendingId = depFormLendingId;
        this.isset_depFormLendingId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyDepFormLendingId() {
        return this.depFormLendingId == null;
    }
 
    /**
     * 重写 toString() 方法
     */
    @Override
    public String toString() {
        return new StringBuilder()
                .append("id=").append(this.id)
                .append("baseGoodsTemplateId=").append(this.baseGoodsTemplateId)
                .append("goodsTemplateName=").append(this.goodsTemplateName)
                .append("unit=").append(this.unit)
                .append("baseGoodsModelsId=").append(this.baseGoodsModelsId)
                .append("baseGoodsModelsName=").append(this.baseGoodsModelsName)
                .append("scrappedCounts=").append(this.scrappedCounts)
                .append("initCount=").append(this.initCount)
                .append("depFormScrappedId=").append(this.depFormScrappedId)
                .append("beiz=").append(this.beiz)
                .append("scrappedCode=").append(this.scrappedCode)
                .append("scrappedName=").append(this.scrappedName)
                .append("depFormLendingGoodsId=").append(this.depFormLendingGoodsId)
                .append("depFormLendingId=").append(this.depFormLendingId)
                .toString();
    }
 
    /**
     * 克隆
     */
    public DepFormScrappedGoods $clone() {
        DepFormScrappedGoods dep_form_scrapped_goods = new DepFormScrappedGoods();
 
        // 数据库名称
        //dep_form_scrapped_goods.setDatabaseName_(this.getDatabaseName_());
 
        // 主键
        if (this.isset_id) {
            dep_form_scrapped_goods.setId(this.getId());
        }
        // 普通属性
        if (this.isset_baseGoodsTemplateId) {
            dep_form_scrapped_goods.setBaseGoodsTemplateId(this.getBaseGoodsTemplateId());
        }
        if (this.isset_goodsTemplateName) {
            dep_form_scrapped_goods.setGoodsTemplateName(this.getGoodsTemplateName());
        }
        if (this.isset_unit) {
            dep_form_scrapped_goods.setUnit(this.getUnit());
        }
        if (this.isset_baseGoodsModelsId) {
            dep_form_scrapped_goods.setBaseGoodsModelsId(this.getBaseGoodsModelsId());
        }
        if (this.isset_baseGoodsModelsName) {
            dep_form_scrapped_goods.setBaseGoodsModelsName(this.getBaseGoodsModelsName());
        }
        if (this.isset_scrappedCounts) {
            dep_form_scrapped_goods.setScrappedCounts(this.getScrappedCounts());
        }
        if (this.isset_initCount) {
            dep_form_scrapped_goods.setInitCount(this.getInitCount());
        }
        if (this.isset_depFormScrappedId) {
            dep_form_scrapped_goods.setDepFormScrappedId(this.getDepFormScrappedId());
        }
        if (this.isset_beiz) {
            dep_form_scrapped_goods.setBeiz(this.getBeiz());
        }
        if (this.isset_scrappedCode) {
            dep_form_scrapped_goods.setScrappedCode(this.getScrappedCode());
        }
        if (this.isset_scrappedName) {
            dep_form_scrapped_goods.setScrappedName(this.getScrappedName());
        }
        if (this.isset_depFormLendingGoodsId) {
            dep_form_scrapped_goods.setDepFormLendingGoodsId(this.getDepFormLendingGoodsId());
        }
        if (this.isset_depFormLendingId) {
            dep_form_scrapped_goods.setDepFormLendingId(this.getDepFormLendingId());
        }
        return dep_form_scrapped_goods;
    }
}