CellTemplate.java 13.7 KB
Newer Older
1
package pwc.taxtech.atms.entity;
2 3 4 5 6 7 8

import java.io.Serializable;
import java.util.Date;

/**
 *
 * This class was generated by MyBatis Generator.
gary's avatar
gary committed
9
 * This class corresponds to the database table cell_template
10 11 12
 *
 * @mbg.generated do_not_delete_during_merge
 */
gary's avatar
gary committed
13
public class CellTemplate implements Serializable {
14 15 16
    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
17
     * This field corresponds to the database column cell_template.id
18 19 20
     *
     * @mbg.generated
     */
21
    private Long id;
22 23 24 25

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
26
     * This field corresponds to the database column cell_template.report_template_id
27 28 29
     *
     * @mbg.generated
     */
30
    private Long reportTemplateId;
31 32 33 34

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
35
     * This field corresponds to the database column cell_template.row_index
36 37 38 39 40 41 42 43
     *
     * @mbg.generated
     */
    private Integer rowIndex;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
44
     * This field corresponds to the database column cell_template.row_name
45 46 47 48 49 50 51 52
     *
     * @mbg.generated
     */
    private String rowName;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
53
     * This field corresponds to the database column cell_template.column_index
54 55 56 57 58 59 60 61
     *
     * @mbg.generated
     */
    private Integer columnIndex;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
62
     * This field corresponds to the database column cell_template.column_name
63 64 65 66 67 68 69 70
     *
     * @mbg.generated
     */
    private String columnName;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
71
     * This field corresponds to the database column cell_template.comment
72 73 74 75 76 77 78 79
     *
     * @mbg.generated
     */
    private String comment;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
80
     * This field corresponds to the database column cell_template.create_time
81 82 83 84 85 86 87 88
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
89
     * This field corresponds to the database column cell_template.update_time
90 91 92 93 94 95 96 97
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
98
     * This field corresponds to the database column cell_template.copy_from_id
99 100 101
     *
     * @mbg.generated
     */
102
    private Long copyFromId;
103 104 105 106

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
107
     * This field corresponds to the database column cell_template.data_type
108 109 110 111 112 113 114 115
     *
     * @mbg.generated
     */
    private Integer dataType;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
116
     * This field corresponds to the database column cell_template.is_read_only
117 118 119
     *
     * @mbg.generated
     */
120
    private Boolean isReadOnly;
121

122 123 124
    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
125
     * This field corresponds to the database column cell_template.create_by
126 127 128 129 130 131 132 133
     *
     * @mbg.generated
     */
    private String createBy;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
134
     * This field corresponds to the database column cell_template.update_by
135 136 137 138 139
     *
     * @mbg.generated
     */
    private String updateBy;

140 141
    /**
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
142
     * This field corresponds to the database table cell_template
143 144 145 146 147 148 149
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
150
     * This method returns the value of the database column cell_template.id
151
     *
gary's avatar
gary committed
152
     * @return the value of cell_template.id
153 154 155
     *
     * @mbg.generated
     */
156 157
    public Long getId() {
        return id;
158 159 160 161
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
162
     * This method sets the value of the database column cell_template.id
163
     *
gary's avatar
gary committed
164
     * @param id the value for cell_template.id
165 166 167
     *
     * @mbg.generated
     */
168 169
    public void setId(Long id) {
        this.id = id;
170 171 172 173
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
174
     * This method returns the value of the database column cell_template.report_template_id
175
     *
gary's avatar
gary committed
176
     * @return the value of cell_template.report_template_id
177 178 179
     *
     * @mbg.generated
     */
180 181
    public Long getReportTemplateId() {
        return reportTemplateId;
182 183 184 185
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
186
     * This method sets the value of the database column cell_template.report_template_id
187
     *
gary's avatar
gary committed
188
     * @param reportTemplateId the value for cell_template.report_template_id
189 190 191
     *
     * @mbg.generated
     */
192 193
    public void setReportTemplateId(Long reportTemplateId) {
        this.reportTemplateId = reportTemplateId;
194 195 196 197
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
198
     * This method returns the value of the database column cell_template.row_index
199
     *
gary's avatar
gary committed
200
     * @return the value of cell_template.row_index
201 202 203 204 205 206 207 208 209
     *
     * @mbg.generated
     */
    public Integer getRowIndex() {
        return rowIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
210
     * This method sets the value of the database column cell_template.row_index
211
     *
gary's avatar
gary committed
212
     * @param rowIndex the value for cell_template.row_index
213 214 215 216 217 218 219 220 221
     *
     * @mbg.generated
     */
    public void setRowIndex(Integer rowIndex) {
        this.rowIndex = rowIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
222
     * This method returns the value of the database column cell_template.row_name
223
     *
gary's avatar
gary committed
224
     * @return the value of cell_template.row_name
225 226 227 228 229 230 231 232 233
     *
     * @mbg.generated
     */
    public String getRowName() {
        return rowName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
234
     * This method sets the value of the database column cell_template.row_name
235
     *
gary's avatar
gary committed
236
     * @param rowName the value for cell_template.row_name
237 238 239 240 241 242 243 244 245
     *
     * @mbg.generated
     */
    public void setRowName(String rowName) {
        this.rowName = rowName == null ? null : rowName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
246
     * This method returns the value of the database column cell_template.column_index
247
     *
gary's avatar
gary committed
248
     * @return the value of cell_template.column_index
249 250 251 252 253 254 255 256 257
     *
     * @mbg.generated
     */
    public Integer getColumnIndex() {
        return columnIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
258
     * This method sets the value of the database column cell_template.column_index
259
     *
gary's avatar
gary committed
260
     * @param columnIndex the value for cell_template.column_index
261 262 263 264 265 266 267 268 269
     *
     * @mbg.generated
     */
    public void setColumnIndex(Integer columnIndex) {
        this.columnIndex = columnIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
270
     * This method returns the value of the database column cell_template.column_name
271
     *
gary's avatar
gary committed
272
     * @return the value of cell_template.column_name
273 274 275 276 277 278 279 280 281
     *
     * @mbg.generated
     */
    public String getColumnName() {
        return columnName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
282
     * This method sets the value of the database column cell_template.column_name
283
     *
gary's avatar
gary committed
284
     * @param columnName the value for cell_template.column_name
285 286 287 288 289 290 291 292 293
     *
     * @mbg.generated
     */
    public void setColumnName(String columnName) {
        this.columnName = columnName == null ? null : columnName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
294
     * This method returns the value of the database column cell_template.comment
295
     *
gary's avatar
gary committed
296
     * @return the value of cell_template.comment
297 298 299 300 301 302 303 304 305
     *
     * @mbg.generated
     */
    public String getComment() {
        return comment;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
306
     * This method sets the value of the database column cell_template.comment
307
     *
gary's avatar
gary committed
308
     * @param comment the value for cell_template.comment
309 310 311 312 313 314 315 316 317
     *
     * @mbg.generated
     */
    public void setComment(String comment) {
        this.comment = comment == null ? null : comment.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
318
     * This method returns the value of the database column cell_template.create_time
319
     *
gary's avatar
gary committed
320
     * @return the value of cell_template.create_time
321 322 323 324 325 326 327 328 329
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
330
     * This method sets the value of the database column cell_template.create_time
331
     *
gary's avatar
gary committed
332
     * @param createTime the value for cell_template.create_time
333 334 335 336 337 338 339 340 341
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
342
     * This method returns the value of the database column cell_template.update_time
343
     *
gary's avatar
gary committed
344
     * @return the value of cell_template.update_time
345 346 347 348 349 350 351 352 353
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
354
     * This method sets the value of the database column cell_template.update_time
355
     *
gary's avatar
gary committed
356
     * @param updateTime the value for cell_template.update_time
357 358 359 360 361 362 363 364 365
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
366
     * This method returns the value of the database column cell_template.copy_from_id
367
     *
gary's avatar
gary committed
368
     * @return the value of cell_template.copy_from_id
369 370 371
     *
     * @mbg.generated
     */
372 373
    public Long getCopyFromId() {
        return copyFromId;
374 375 376 377
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
378
     * This method sets the value of the database column cell_template.copy_from_id
379
     *
gary's avatar
gary committed
380
     * @param copyFromId the value for cell_template.copy_from_id
381 382 383
     *
     * @mbg.generated
     */
384 385
    public void setCopyFromId(Long copyFromId) {
        this.copyFromId = copyFromId;
386 387 388 389
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
390
     * This method returns the value of the database column cell_template.data_type
391
     *
gary's avatar
gary committed
392
     * @return the value of cell_template.data_type
393 394 395 396 397 398 399 400 401
     *
     * @mbg.generated
     */
    public Integer getDataType() {
        return dataType;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
402
     * This method sets the value of the database column cell_template.data_type
403
     *
gary's avatar
gary committed
404
     * @param dataType the value for cell_template.data_type
405 406 407 408 409 410 411 412 413
     *
     * @mbg.generated
     */
    public void setDataType(Integer dataType) {
        this.dataType = dataType;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
414
     * This method returns the value of the database column cell_template.is_read_only
415
     *
gary's avatar
gary committed
416
     * @return the value of cell_template.is_read_only
417 418 419
     *
     * @mbg.generated
     */
420
    public Boolean getIsReadOnly() {
421 422 423 424 425
        return isReadOnly;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
426
     * This method sets the value of the database column cell_template.is_read_only
427
     *
gary's avatar
gary committed
428
     * @param isReadOnly the value for cell_template.is_read_only
429 430 431
     *
     * @mbg.generated
     */
432
    public void setIsReadOnly(Boolean isReadOnly) {
433 434 435
        this.isReadOnly = isReadOnly;
    }

436 437
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
438
     * This method returns the value of the database column cell_template.create_by
439
     *
gary's avatar
gary committed
440
     * @return the value of cell_template.create_by
441 442 443 444 445 446 447 448 449
     *
     * @mbg.generated
     */
    public String getCreateBy() {
        return createBy;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
450
     * This method sets the value of the database column cell_template.create_by
451
     *
gary's avatar
gary committed
452
     * @param createBy the value for cell_template.create_by
453 454 455 456 457 458 459 460 461
     *
     * @mbg.generated
     */
    public void setCreateBy(String createBy) {
        this.createBy = createBy == null ? null : createBy.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
462
     * This method returns the value of the database column cell_template.update_by
463
     *
gary's avatar
gary committed
464
     * @return the value of cell_template.update_by
465 466 467 468 469 470 471 472 473
     *
     * @mbg.generated
     */
    public String getUpdateBy() {
        return updateBy;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
474
     * This method sets the value of the database column cell_template.update_by
475
     *
gary's avatar
gary committed
476
     * @param updateBy the value for cell_template.update_by
477 478 479 480 481 482 483
     *
     * @mbg.generated
     */
    public void setUpdateBy(String updateBy) {
        this.updateBy = updateBy == null ? null : updateBy.trim();
    }

484 485
    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
486
     * This method corresponds to the database table cell_template
487 488 489 490 491 492 493 494 495
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
496 497
        sb.append(", id=").append(id);
        sb.append(", reportTemplateId=").append(reportTemplateId);
498 499 500 501 502 503 504
        sb.append(", rowIndex=").append(rowIndex);
        sb.append(", rowName=").append(rowName);
        sb.append(", columnIndex=").append(columnIndex);
        sb.append(", columnName=").append(columnName);
        sb.append(", comment=").append(comment);
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
505
        sb.append(", copyFromId=").append(copyFromId);
506 507
        sb.append(", dataType=").append(dataType);
        sb.append(", isReadOnly=").append(isReadOnly);
508 509
        sb.append(", createBy=").append(createBy);
        sb.append(", updateBy=").append(updateBy);
510 511 512 513
        sb.append("]");
        return sb.toString();
    }
}