kimi
2020-03-19 807e2c7a2ca8283ba6d6f764c83320ad5e023349
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
package com.highdatas.mdm.entity;
 
import java.util.Date;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import com.highdatas.mdm.pojo.SysAssembleCheckType;
import com.highdatas.mdm.pojo.SysAssembleRunStatus;
import com.highdatas.mdm.pojo.SysAssembleStatus;
import com.highdatas.mdm.pojo.SysAssembleUpdateType;
 
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2020-02-20
 */
@TableName("sys_assemble")
public class SysAssemble extends Model<SysAssemble> {
 
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    private String name;
    @TableField("menu_id")
    private String menuId;
 
    @TableField("pre_time")
    private Date preTime;
 
    @TableField("pre_msg")
    private String preMsg;
 
    @TableField("pre_cnt")
    private Integer preCnt;
 
    @TableField("pre_status")
    private SysAssembleRunStatus preStatus;
 
    @TableField("user_id")
    private String userId;
 
    @TableField("purge_sql")
    private String purgeSql;
 
    @TableField("flow_id")
    private String flowId;
 
    @TableField("job_id")
    private String jobId;
 
    @TableField("update_type")
    private SysAssembleUpdateType updateType;
 
    @TableField("check_type")
    private SysAssembleCheckType checkType;
    @TableField("check_fields")
    private String checkFields;
 
     @TableField("update_fields")
    private String updateFields;
 
    private String cron;
 
    private Boolean bigdata;
 
    private SysAssembleStatus status;
 
    @TableField("create_time")
    private Date createTime;
 
    @TableField("update_time")
    private Date updateTime;
 
    public String getPreMsg() {
        return preMsg;
    }
 
    public SysAssemble setPreMsg(String preMsg) {
        this.preMsg = preMsg;
        return this;
    }
 
    public String getFlowId() {
        return flowId;
    }
 
    public SysAssemble setFlowId(String flowId) {
        this.flowId = flowId;
        return this;
    }
 
    public Date getPreTime() {
        return preTime;
    }
 
    public SysAssemble setPreTime(Date preTime) {
        this.preTime = preTime;
        return this;
    }
 
    public Integer getPreCnt() {
        return preCnt;
    }
 
    public SysAssemble setPreCnt(Integer preCnt) {
        this.preCnt = preCnt;
        return this;
    }
 
    public SysAssembleRunStatus getPreStatus() {
        return preStatus;
    }
 
    public SysAssemble setPreStatus(SysAssembleRunStatus preStatus) {
        this.preStatus = preStatus;
        return this;
    }
 
    public String getCheckFields() {
        return checkFields;
    }
 
    public SysAssemble setCheckFields(String checkFields) {
        this.checkFields = checkFields;
        return this;
    }
 
    public SysAssembleCheckType getCheckType() {
        return checkType;
    }
 
    public SysAssemble setCheckType(SysAssembleCheckType checkType) {
        this.checkType = checkType;
        return this;
    }
 
    public String getUpdateFields() {
        return updateFields;
    }
 
    public SysAssemble setUpdateFields(String updateFields) {
        this.updateFields = updateFields;
        return this;
    }
 
    public String getPurgeSql() {
        return purgeSql;
    }
 
    public SysAssemble setPurgeSql(String purgeSql) {
        this.purgeSql = purgeSql;
        return this;
    }
 
    public String getName() {
        return name;
    }
 
    public SysAssemble setName(String name) {
        this.name = name;
        return this;
    }
 
    public SysAssembleUpdateType getUpdateType() {
        return updateType;
    }
 
    public SysAssemble setUpdateType(SysAssembleUpdateType updateType) {
        this.updateType = updateType;
        return this;
    }
 
    public String getId() {
        return id;
    }
 
    public SysAssemble setId(String id) {
        this.id = id;
        return this;
    }
    public String getMenuId() {
        return menuId;
    }
 
    public SysAssemble setMenuId(String menuId) {
        this.menuId = menuId;
        return this;
    }
    public String getUserId() {
        return userId;
    }
 
    public SysAssemble setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getJobId() {
        return jobId;
    }
 
    public SysAssemble setJobId(String jobId) {
        this.jobId = jobId;
        return this;
    }
    public String getCron() {
        return cron;
    }
 
    public SysAssemble setCron(String cron) {
        this.cron = cron;
        return this;
    }
    public Boolean getBigdata() {
        return bigdata;
    }
 
    public SysAssemble setBigdata(Boolean bigdata) {
        this.bigdata = bigdata;
        return this;
    }
    public SysAssembleStatus getStatus() {
        return status;
    }
 
    public SysAssemble setStatus(SysAssembleStatus status) {
        this.status = status;
        return this;
    }
    public Date getCreateTime() {
        return createTime;
    }
 
    public SysAssemble setCreateTime(Date createTime) {
        this.createTime = createTime;
        return this;
    }
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public SysAssemble setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "SysAssemble{" +
        "id=" + id +
        ", menuId=" + menuId +
        ", userId=" + userId +
        ", jobId=" + jobId +
        ", cron=" + cron +
        ", bigdata=" + bigdata +
        ", status=" + status +
        ", createTime=" + createTime +
        ", updateTime=" + updateTime +
        "}";
    }
}