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
 
package com.ishop.model.po;
 
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.walker.jdbc.BasePo;
 
/**
 * 表名:EB_ARTICLE *
 * @author genrator
 */
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public class EbArticle extends BasePo<EbArticle> {
    // 序列化版本号
    private static final long serialVersionUID = 1L;
 
    /**
     * 用于兼容老写法
     */
    @JsonIgnore
    public static final EbArticle ROW_MAPPER = new EbArticle();
 
    // 主键
    private Long id = null;
    @JsonIgnore
    protected boolean isset_id = false;
 
    // 属性列表
    private Long cid = null;
    @JsonIgnore
    protected boolean isset_cid = false;
 
    private String title = null;
    @JsonIgnore
    protected boolean isset_title = false;
 
    private String author = null;
    @JsonIgnore
    protected boolean isset_author = false;
 
    private String cover = null;
    @JsonIgnore
    protected boolean isset_cover = false;
 
    private String synopsis = null;
    @JsonIgnore
    protected boolean isset_synopsis = false;
 
    private String content = null;
    @JsonIgnore
    protected boolean isset_content = false;
 
    private Long visit = null;
    @JsonIgnore
    protected boolean isset_visit = false;
 
    private Integer isHot = null;
    @JsonIgnore
    protected boolean isset_isHot = false;
 
    private Integer isBanner = null;
    @JsonIgnore
    protected boolean isset_isBanner = false;
 
    private Integer status = null;
    @JsonIgnore
    protected boolean isset_status = false;
 
    private Integer sort = null;
    @JsonIgnore
    protected boolean isset_sort = false;
 
    private Integer productId = null;
    @JsonIgnore
    protected boolean isset_productId = false;
 
    private Integer isDel = null;
    @JsonIgnore
    protected boolean isset_isDel = false;
 
    private Long createTime = null;
    @JsonIgnore
    protected boolean isset_createTime = false;
 
    private Long updateTime = null;
    @JsonIgnore
    protected boolean isset_updateTime = false;
 
    /**
     * 默认构造函数
     */
    public EbArticle() {
    }
 
    /**
     * 根据主键构造对象
     */
    public EbArticle(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 getCid() {
        return this.cid;
    }
 
    public void setCid(Long cid) {
        this.cid = cid;
        this.isset_cid = true;
    }
 
    @JsonIgnore
    public boolean isEmptyCid() {
        return this.cid == null;
    }
 
    public String getTitle() {
        return this.title;
    }
 
    public void setTitle(String title) {
        this.title = title;
        this.isset_title = true;
    }
 
    @JsonIgnore
    public boolean isEmptyTitle() {
        return this.title == null || this.title.length() == 0;
    }
 
    public String getAuthor() {
        return this.author;
    }
 
    public void setAuthor(String author) {
        this.author = author;
        this.isset_author = true;
    }
 
    @JsonIgnore
    public boolean isEmptyAuthor() {
        return this.author == null || this.author.length() == 0;
    }
 
    public String getCover() {
        return this.cover;
    }
 
    public void setCover(String cover) {
        this.cover = cover;
        this.isset_cover = true;
    }
 
    @JsonIgnore
    public boolean isEmptyCover() {
        return this.cover == null || this.cover.length() == 0;
    }
 
    public String getSynopsis() {
        return this.synopsis;
    }
 
    public void setSynopsis(String synopsis) {
        this.synopsis = synopsis;
        this.isset_synopsis = true;
    }
 
    @JsonIgnore
    public boolean isEmptySynopsis() {
        return this.synopsis == null || this.synopsis.length() == 0;
    }
 
    public String getContent() {
        return this.content;
    }
 
    public void setContent(String content) {
        this.content = content;
        this.isset_content = true;
    }
 
    @JsonIgnore
    public boolean isEmptyContent() {
        return this.content == null || this.content.length() == 0;
    }
 
    public Long getVisit() {
        return this.visit;
    }
 
    public void setVisit(Long visit) {
        this.visit = visit;
        this.isset_visit = true;
    }
 
    @JsonIgnore
    public boolean isEmptyVisit() {
        return this.visit == null;
    }
 
    public Integer getIsHot() {
        return this.isHot;
    }
 
    public void setIsHot(Integer isHot) {
        this.isHot = isHot;
        this.isset_isHot = true;
    }
 
    @JsonIgnore
    public boolean isEmptyIsHot() {
        return this.isHot == null;
    }
 
    public Integer getIsBanner() {
        return this.isBanner;
    }
 
    public void setIsBanner(Integer isBanner) {
        this.isBanner = isBanner;
        this.isset_isBanner = true;
    }
 
    @JsonIgnore
    public boolean isEmptyIsBanner() {
        return this.isBanner == null;
    }
 
    public Integer getStatus() {
        return this.status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
        this.isset_status = true;
    }
 
    @JsonIgnore
    public boolean isEmptyStatus() {
        return this.status == null;
    }
 
    public Integer getSort() {
        return this.sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
        this.isset_sort = true;
    }
 
    @JsonIgnore
    public boolean isEmptySort() {
        return this.sort == null;
    }
 
    public Integer getProductId() {
        return this.productId;
    }
 
    public void setProductId(Integer productId) {
        this.productId = productId;
        this.isset_productId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyProductId() {
        return this.productId == null;
    }
 
    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 Long getCreateTime() {
        return this.createTime;
    }
 
    public void setCreateTime(Long createTime) {
        this.createTime = createTime;
        this.isset_createTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyCreateTime() {
        return this.createTime == null;
    }
 
    public Long getUpdateTime() {
        return this.updateTime;
    }
 
    public void setUpdateTime(Long updateTime) {
        this.updateTime = updateTime;
        this.isset_updateTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyUpdateTime() {
        return this.updateTime == null;
    }
 
    /**
     * 重写 toString() 方法
     */
    @Override
    public String toString() {
        return new StringBuilder()
                .append("id=").append(this.id)
                .append("cid=").append(this.cid)
                .append("title=").append(this.title)
                .append("author=").append(this.author)
                .append("cover=").append(this.cover)
                .append("synopsis=").append(this.synopsis)
                .append("content=").append(this.content)
                .append("visit=").append(this.visit)
                .append("isHot=").append(this.isHot)
                .append("isBanner=").append(this.isBanner)
                .append("status=").append(this.status)
                .append("sort=").append(this.sort)
                .append("productId=").append(this.productId)
                .append("isDel=").append(this.isDel)
                .append("createTime=").append(this.createTime)
                .append("updateTime=").append(this.updateTime)
                .toString();
    }
 
    /**
     * 克隆
     */
    public EbArticle $clone() {
        EbArticle eb_article = new EbArticle();
 
        // 数据库名称
        //eb_article.setDatabaseName_(this.getDatabaseName_());
 
        // 主键
        if (this.isset_id) {
            eb_article.setId(this.getId());
        }
        // 普通属性
        if (this.isset_cid) {
            eb_article.setCid(this.getCid());
        }
        if (this.isset_title) {
            eb_article.setTitle(this.getTitle());
        }
        if (this.isset_author) {
            eb_article.setAuthor(this.getAuthor());
        }
        if (this.isset_cover) {
            eb_article.setCover(this.getCover());
        }
        if (this.isset_synopsis) {
            eb_article.setSynopsis(this.getSynopsis());
        }
        if (this.isset_content) {
            eb_article.setContent(this.getContent());
        }
        if (this.isset_visit) {
            eb_article.setVisit(this.getVisit());
        }
        if (this.isset_isHot) {
            eb_article.setIsHot(this.getIsHot());
        }
        if (this.isset_isBanner) {
            eb_article.setIsBanner(this.getIsBanner());
        }
        if (this.isset_status) {
            eb_article.setStatus(this.getStatus());
        }
        if (this.isset_sort) {
            eb_article.setSort(this.getSort());
        }
        if (this.isset_productId) {
            eb_article.setProductId(this.getProductId());
        }
        if (this.isset_isDel) {
            eb_article.setIsDel(this.getIsDel());
        }
        if (this.isset_createTime) {
            eb_article.setCreateTime(this.getCreateTime());
        }
        if (this.isset_updateTime) {
            eb_article.setUpdateTime(this.getUpdateTime());
        }
        return eb_article;
    }
}