PeriodCellTemplate.java 18 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1
package pwc.taxtech.atms.vat.entity;
2 3 4 5 6 7 8

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

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

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
26
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.PERIOD
27 28 29 30 31 32 33 34
     *
     * @mbg.generated
     */
    private Integer period;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
35
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.REPORT_TEMPLATE_ID
36 37 38
     *
     * @mbg.generated
     */
39
    private Long reportTemplateId;
40 41 42 43

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
44
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_INDEX
45 46 47 48 49 50 51 52
     *
     * @mbg.generated
     */
    private Integer rowIndex;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
53
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_NAME
54 55 56 57 58 59 60 61
     *
     * @mbg.generated
     */
    private String rowName;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
62
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_INDEX
63 64 65 66 67 68 69 70
     *
     * @mbg.generated
     */
    private Integer columnIndex;

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

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
80
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COMMENT
81 82 83 84 85 86 87 88
     *
     * @mbg.generated
     */
    private String comment;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
89
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_TIME
90 91 92 93 94 95 96 97
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
98
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_TIME
99 100 101 102 103 104 105 106
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
107
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CELL_TEMPLATE_ID
108 109 110
     *
     * @mbg.generated
     */
111
    private Long cellTemplateId;
112 113 114 115

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
116
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.DATA_TYPE
117 118 119 120 121
     *
     * @mbg.generated
     */
    private Integer dataType;

122 123 124
    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
125
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.IS_READ_ONLY
126 127 128
     *
     * @mbg.generated
     */
neo's avatar
neo committed
129
    private Integer isReadOnly;
130 131 132 133

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
134
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COPY_FROM_ID
135 136 137 138 139 140 141 142
     *
     * @mbg.generated
     */
    private Long copyFromId;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
143
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_BY
144 145 146 147 148
     *
     * @mbg.generated
     */
    private String createBy;

149 150 151
    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
152
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_BY
153 154 155
     *
     * @mbg.generated
     */
156
    private String updateBy;
157

neo's avatar
neo committed
158 159 160 161 162 163 164 165 166
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.PROJECT_ID
     *
     * @mbg.generated
     */
    private String projectId;

167 168
    /**
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
169
     * This field corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE
170 171 172 173 174 175 176
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
177
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.ID
178
     *
neo's avatar
neo committed
179
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.ID
180 181 182
     *
     * @mbg.generated
     */
183 184
    public Long getId() {
        return id;
185 186 187 188
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
189
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.ID
190
     *
neo's avatar
neo committed
191
     * @param id the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.ID
192 193 194
     *
     * @mbg.generated
     */
195 196
    public void setId(Long id) {
        this.id = id;
197 198 199 200
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
201
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.PERIOD
202
     *
neo's avatar
neo committed
203
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.PERIOD
204 205 206 207 208 209 210 211 212
     *
     * @mbg.generated
     */
    public Integer getPeriod() {
        return period;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
213
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.PERIOD
214
     *
neo's avatar
neo committed
215
     * @param period the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.PERIOD
216 217 218 219 220 221 222 223 224
     *
     * @mbg.generated
     */
    public void setPeriod(Integer period) {
        this.period = period;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
225
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.REPORT_TEMPLATE_ID
226
     *
neo's avatar
neo committed
227
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.REPORT_TEMPLATE_ID
228 229 230
     *
     * @mbg.generated
     */
231
    public Long getReportTemplateId() {
232 233 234 235 236
        return reportTemplateId;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
237
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.REPORT_TEMPLATE_ID
238
     *
neo's avatar
neo committed
239
     * @param reportTemplateId the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.REPORT_TEMPLATE_ID
240 241 242
     *
     * @mbg.generated
     */
243 244
    public void setReportTemplateId(Long reportTemplateId) {
        this.reportTemplateId = reportTemplateId;
245 246 247 248
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
249
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_INDEX
250
     *
neo's avatar
neo committed
251
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_INDEX
252 253 254 255 256 257 258 259 260
     *
     * @mbg.generated
     */
    public Integer getRowIndex() {
        return rowIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
261
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_INDEX
262
     *
neo's avatar
neo committed
263
     * @param rowIndex the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_INDEX
264 265 266 267 268 269 270 271 272
     *
     * @mbg.generated
     */
    public void setRowIndex(Integer rowIndex) {
        this.rowIndex = rowIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
273
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_NAME
274
     *
neo's avatar
neo committed
275
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_NAME
276 277 278 279 280 281 282 283 284
     *
     * @mbg.generated
     */
    public String getRowName() {
        return rowName;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
285
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_NAME
286
     *
neo's avatar
neo committed
287
     * @param rowName the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.ROW_NAME
288 289 290 291 292 293 294 295 296
     *
     * @mbg.generated
     */
    public void setRowName(String rowName) {
        this.rowName = rowName == null ? null : rowName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
297
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_INDEX
298
     *
neo's avatar
neo committed
299
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_INDEX
300 301 302 303 304 305 306 307 308
     *
     * @mbg.generated
     */
    public Integer getColumnIndex() {
        return columnIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
309
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_INDEX
310
     *
neo's avatar
neo committed
311
     * @param columnIndex the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_INDEX
312 313 314 315 316 317 318 319 320
     *
     * @mbg.generated
     */
    public void setColumnIndex(Integer columnIndex) {
        this.columnIndex = columnIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
321
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_NAME
322
     *
neo's avatar
neo committed
323
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_NAME
324 325 326 327 328 329 330 331 332
     *
     * @mbg.generated
     */
    public String getColumnName() {
        return columnName;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
333
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_NAME
334
     *
neo's avatar
neo committed
335
     * @param columnName the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.COLUMN_NAME
336 337 338 339 340 341 342 343 344
     *
     * @mbg.generated
     */
    public void setColumnName(String columnName) {
        this.columnName = columnName == null ? null : columnName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
345
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COMMENT
346
     *
neo's avatar
neo committed
347
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.COMMENT
348 349 350 351 352 353 354 355 356
     *
     * @mbg.generated
     */
    public String getComment() {
        return comment;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
357
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COMMENT
358
     *
neo's avatar
neo committed
359
     * @param comment the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.COMMENT
360 361 362 363 364 365 366 367 368
     *
     * @mbg.generated
     */
    public void setComment(String comment) {
        this.comment = comment == null ? null : comment.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
369
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_TIME
370
     *
neo's avatar
neo committed
371
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_TIME
372 373 374 375 376 377 378 379 380
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
381
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_TIME
382
     *
neo's avatar
neo committed
383
     * @param createTime the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_TIME
384 385 386 387 388 389 390 391 392
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
393
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_TIME
394
     *
neo's avatar
neo committed
395
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_TIME
396 397 398 399 400 401 402 403 404
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
405
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_TIME
406
     *
neo's avatar
neo committed
407
     * @param updateTime the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_TIME
408 409 410 411 412 413 414 415 416
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
417
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CELL_TEMPLATE_ID
418
     *
neo's avatar
neo committed
419
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.CELL_TEMPLATE_ID
420 421 422
     *
     * @mbg.generated
     */
423 424
    public Long getCellTemplateId() {
        return cellTemplateId;
425 426 427 428
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
429
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CELL_TEMPLATE_ID
430
     *
neo's avatar
neo committed
431
     * @param cellTemplateId the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.CELL_TEMPLATE_ID
432 433 434
     *
     * @mbg.generated
     */
435 436
    public void setCellTemplateId(Long cellTemplateId) {
        this.cellTemplateId = cellTemplateId;
437 438 439 440
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
441
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.DATA_TYPE
442
     *
neo's avatar
neo committed
443
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.DATA_TYPE
444 445 446 447 448 449 450 451 452
     *
     * @mbg.generated
     */
    public Integer getDataType() {
        return dataType;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
453
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.DATA_TYPE
454
     *
neo's avatar
neo committed
455
     * @param dataType the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.DATA_TYPE
456 457 458 459 460 461 462 463 464
     *
     * @mbg.generated
     */
    public void setDataType(Integer dataType) {
        this.dataType = dataType;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
465
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.IS_READ_ONLY
466
     *
neo's avatar
neo committed
467
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.IS_READ_ONLY
468 469 470
     *
     * @mbg.generated
     */
neo's avatar
neo committed
471
    public Integer getIsReadOnly() {
472 473 474 475 476
        return isReadOnly;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
477
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.IS_READ_ONLY
478
     *
neo's avatar
neo committed
479
     * @param isReadOnly the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.IS_READ_ONLY
480 481 482
     *
     * @mbg.generated
     */
neo's avatar
neo committed
483
    public void setIsReadOnly(Integer isReadOnly) {
484 485 486 487 488
        this.isReadOnly = isReadOnly;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
489
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COPY_FROM_ID
490
     *
neo's avatar
neo committed
491
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.COPY_FROM_ID
492 493 494 495 496 497 498 499 500
     *
     * @mbg.generated
     */
    public Long getCopyFromId() {
        return copyFromId;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
501
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.COPY_FROM_ID
502
     *
neo's avatar
neo committed
503
     * @param copyFromId the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.COPY_FROM_ID
504 505 506 507 508 509 510 511 512
     *
     * @mbg.generated
     */
    public void setCopyFromId(Long copyFromId) {
        this.copyFromId = copyFromId;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
513
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_BY
514
     *
neo's avatar
neo committed
515
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_BY
516 517 518 519 520 521 522 523 524
     *
     * @mbg.generated
     */
    public String getCreateBy() {
        return createBy;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
525
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_BY
526
     *
neo's avatar
neo committed
527
     * @param createBy the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.CREATE_BY
528 529 530 531 532 533 534 535 536
     *
     * @mbg.generated
     */
    public void setCreateBy(String createBy) {
        this.createBy = createBy == null ? null : createBy.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
537
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_BY
538
     *
neo's avatar
neo committed
539
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_BY
540 541 542 543 544 545 546 547 548
     *
     * @mbg.generated
     */
    public String getUpdateBy() {
        return updateBy;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
549
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_BY
550
     *
neo's avatar
neo committed
551
     * @param updateBy the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.UPDATE_BY
552 553 554 555 556 557 558 559 560
     *
     * @mbg.generated
     */
    public void setUpdateBy(String updateBy) {
        this.updateBy = updateBy == null ? null : updateBy.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
     * This method returns the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.PROJECT_ID
     *
     * @return the value of TAX_ADMIN.PERIOD_CELL_TEMPLATE.PROJECT_ID
     *
     * @mbg.generated
     */
    public String getProjectId() {
        return projectId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_ADMIN.PERIOD_CELL_TEMPLATE.PROJECT_ID
     *
     * @param projectId the value for TAX_ADMIN.PERIOD_CELL_TEMPLATE.PROJECT_ID
     *
     * @mbg.generated
     */
    public void setProjectId(String projectId) {
        this.projectId = projectId == null ? null : projectId.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_TEMPLATE
586 587 588 589 590 591 592 593 594
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
595 596 597
        sb.append(", id=").append(id);
        sb.append(", period=").append(period);
        sb.append(", reportTemplateId=").append(reportTemplateId);
598 599 600 601 602 603 604
        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);
605
        sb.append(", cellTemplateId=").append(cellTemplateId);
606 607
        sb.append(", dataType=").append(dataType);
        sb.append(", isReadOnly=").append(isReadOnly);
608 609 610
        sb.append(", copyFromId=").append(copyFromId);
        sb.append(", createBy=").append(createBy);
        sb.append(", updateBy=").append(updateBy);
neo's avatar
neo committed
611
        sb.append(", projectId=").append(projectId);
612 613 614 615
        sb.append("]");
        return sb.toString();
    }
}