PeriodCellTemplate.java 16.8 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.
9
 * This class corresponds to the database table 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.
17
     * This field corresponds to the database column period_cell_template.id
18 19 20
     *
     * @mbg.generated
     */
21
    private Long id;
22 23

    /**
24 25
     * Database Column Remarks:
     *   月份
26 27
     *
     * This field was generated by MyBatis Generator.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
     * This field corresponds to the database column period_cell_template.period
     *
     * @mbg.generated
     */
    private Integer period;

    /**
     * Database Column Remarks:
     *   报表模板ID
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column period_cell_template.report_template_id
     *
     * @mbg.generated
     */
43
    private Long reportTemplateId;
44 45 46 47 48 49 50

    /**
     * Database Column Remarks:
     *   行号
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column period_cell_template.row_index
51 52 53 54 55 56
     *
     * @mbg.generated
     */
    private Integer rowIndex;

    /**
57 58
     * Database Column Remarks:
     *   行名称
59 60
     *
     * This field was generated by MyBatis Generator.
61
     * This field corresponds to the database column period_cell_template.row_name
62 63 64 65 66 67
     *
     * @mbg.generated
     */
    private String rowName;

    /**
68 69
     * Database Column Remarks:
     *   列号
70 71
     *
     * This field was generated by MyBatis Generator.
72
     * This field corresponds to the database column period_cell_template.column_index
73 74 75 76 77 78
     *
     * @mbg.generated
     */
    private Integer columnIndex;

    /**
79 80
     * Database Column Remarks:
     *   列名称
81 82
     *
     * This field was generated by MyBatis Generator.
83
     * This field corresponds to the database column period_cell_template.column_name
84 85 86 87 88 89
     *
     * @mbg.generated
     */
    private String columnName;

    /**
90 91
     * Database Column Remarks:
     *   注释
92 93
     *
     * This field was generated by MyBatis Generator.
94
     * This field corresponds to the database column period_cell_template.comment
95 96 97 98 99 100
     *
     * @mbg.generated
     */
    private String comment;

    /**
101 102
     * Database Column Remarks:
     *   创建时间
103 104
     *
     * This field was generated by MyBatis Generator.
105
     * This field corresponds to the database column period_cell_template.create_time
106 107 108 109 110 111
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
112 113
     * Database Column Remarks:
     *   更新时间
114 115
     *
     * This field was generated by MyBatis Generator.
116
     * This field corresponds to the database column period_cell_template.update_time
117 118 119 120 121 122
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
123 124
     * Database Column Remarks:
     *   主库单元格模板ID
125 126
     *
     * This field was generated by MyBatis Generator.
127
     * This field corresponds to the database column period_cell_template.cell_template_id
128 129 130
     *
     * @mbg.generated
     */
131
    private Long cellTemplateId;
132 133

    /**
134 135
     * Database Column Remarks:
     *   数据类型
136 137
     *
     * This field was generated by MyBatis Generator.
138
     * This field corresponds to the database column period_cell_template.data_type
139 140 141 142 143
     *
     * @mbg.generated
     */
    private Integer dataType;

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
    /**
     * Database Column Remarks:
     *   是否只读
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column period_cell_template.is_read_only
     *
     * @mbg.generated
     */
    private Boolean isReadOnly;

    /**
     * Database Column Remarks:
     *   复制数据源ID
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column period_cell_template.copy_from_id
     *
     * @mbg.generated
     */
    private Long copyFromId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column period_cell_template.create_by
     *
     * @mbg.generated
     */
    private String createBy;

175 176 177
    /**
     *
     * This field was generated by MyBatis Generator.
178
     * This field corresponds to the database column period_cell_template.update_by
179 180 181
     *
     * @mbg.generated
     */
182
    private String updateBy;
183 184 185

    /**
     * This field was generated by MyBatis Generator.
186
     * This field corresponds to the database table period_cell_template
187 188 189 190 191 192 193
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
194
     * This method returns the value of the database column period_cell_template.id
195
     *
196
     * @return the value of period_cell_template.id
197 198 199
     *
     * @mbg.generated
     */
200 201
    public Long getId() {
        return id;
202 203 204 205
    }

    /**
     * This method was generated by MyBatis Generator.
206
     * This method sets the value of the database column period_cell_template.id
207
     *
208
     * @param id the value for period_cell_template.id
209 210 211
     *
     * @mbg.generated
     */
212 213
    public void setId(Long id) {
        this.id = id;
214 215 216 217
    }

    /**
     * This method was generated by MyBatis Generator.
218
     * This method returns the value of the database column period_cell_template.period
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
     * @return the value of period_cell_template.period
     *
     * @mbg.generated
     */
    public Integer getPeriod() {
        return period;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column period_cell_template.period
     *
     * @param period the value for period_cell_template.period
     *
     * @mbg.generated
     */
    public void setPeriod(Integer period) {
        this.period = period;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column period_cell_template.report_template_id
     *
     * @return the value of period_cell_template.report_template_id
     *
     * @mbg.generated
     */
248
    public Long getReportTemplateId() {
249 250 251 252 253 254 255 256 257 258 259
        return reportTemplateId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column period_cell_template.report_template_id
     *
     * @param reportTemplateId the value for period_cell_template.report_template_id
     *
     * @mbg.generated
     */
260 261
    public void setReportTemplateId(Long reportTemplateId) {
        this.reportTemplateId = reportTemplateId;
262 263 264 265 266 267 268
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column period_cell_template.row_index
     *
     * @return the value of period_cell_template.row_index
269 270 271 272 273 274 275 276 277
     *
     * @mbg.generated
     */
    public Integer getRowIndex() {
        return rowIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
278
     * This method sets the value of the database column period_cell_template.row_index
279
     *
280
     * @param rowIndex the value for period_cell_template.row_index
281 282 283 284 285 286 287 288 289
     *
     * @mbg.generated
     */
    public void setRowIndex(Integer rowIndex) {
        this.rowIndex = rowIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
290
     * This method returns the value of the database column period_cell_template.row_name
291
     *
292
     * @return the value of period_cell_template.row_name
293 294 295 296 297 298 299 300 301
     *
     * @mbg.generated
     */
    public String getRowName() {
        return rowName;
    }

    /**
     * This method was generated by MyBatis Generator.
302
     * This method sets the value of the database column period_cell_template.row_name
303
     *
304
     * @param rowName the value for period_cell_template.row_name
305 306 307 308 309 310 311 312 313
     *
     * @mbg.generated
     */
    public void setRowName(String rowName) {
        this.rowName = rowName == null ? null : rowName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
314
     * This method returns the value of the database column period_cell_template.column_index
315
     *
316
     * @return the value of period_cell_template.column_index
317 318 319 320 321 322 323 324 325
     *
     * @mbg.generated
     */
    public Integer getColumnIndex() {
        return columnIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
326
     * This method sets the value of the database column period_cell_template.column_index
327
     *
328
     * @param columnIndex the value for period_cell_template.column_index
329 330 331 332 333 334 335 336 337
     *
     * @mbg.generated
     */
    public void setColumnIndex(Integer columnIndex) {
        this.columnIndex = columnIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
338
     * This method returns the value of the database column period_cell_template.column_name
339
     *
340
     * @return the value of period_cell_template.column_name
341 342 343 344 345 346 347 348 349
     *
     * @mbg.generated
     */
    public String getColumnName() {
        return columnName;
    }

    /**
     * This method was generated by MyBatis Generator.
350
     * This method sets the value of the database column period_cell_template.column_name
351
     *
352
     * @param columnName the value for period_cell_template.column_name
353 354 355 356 357 358 359 360 361
     *
     * @mbg.generated
     */
    public void setColumnName(String columnName) {
        this.columnName = columnName == null ? null : columnName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
362
     * This method returns the value of the database column period_cell_template.comment
363
     *
364
     * @return the value of period_cell_template.comment
365 366 367 368 369 370 371 372 373
     *
     * @mbg.generated
     */
    public String getComment() {
        return comment;
    }

    /**
     * This method was generated by MyBatis Generator.
374
     * This method sets the value of the database column period_cell_template.comment
375
     *
376
     * @param comment the value for period_cell_template.comment
377 378 379 380 381 382 383 384 385
     *
     * @mbg.generated
     */
    public void setComment(String comment) {
        this.comment = comment == null ? null : comment.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
386
     * This method returns the value of the database column period_cell_template.create_time
387
     *
388
     * @return the value of period_cell_template.create_time
389 390 391 392 393 394 395 396 397
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
398
     * This method sets the value of the database column period_cell_template.create_time
399
     *
400
     * @param createTime the value for period_cell_template.create_time
401 402 403 404 405 406 407 408 409
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
410
     * This method returns the value of the database column period_cell_template.update_time
411
     *
412
     * @return the value of period_cell_template.update_time
413 414 415 416 417 418 419 420 421
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
422
     * This method sets the value of the database column period_cell_template.update_time
423
     *
424
     * @param updateTime the value for period_cell_template.update_time
425 426 427 428 429 430 431 432 433
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
434
     * This method returns the value of the database column period_cell_template.cell_template_id
435
     *
436
     * @return the value of period_cell_template.cell_template_id
437 438 439
     *
     * @mbg.generated
     */
440 441
    public Long getCellTemplateId() {
        return cellTemplateId;
442 443 444 445
    }

    /**
     * This method was generated by MyBatis Generator.
446
     * This method sets the value of the database column period_cell_template.cell_template_id
447
     *
448
     * @param cellTemplateId the value for period_cell_template.cell_template_id
449 450 451
     *
     * @mbg.generated
     */
452 453
    public void setCellTemplateId(Long cellTemplateId) {
        this.cellTemplateId = cellTemplateId;
454 455 456 457
    }

    /**
     * This method was generated by MyBatis Generator.
458
     * This method returns the value of the database column period_cell_template.data_type
459
     *
460
     * @return the value of period_cell_template.data_type
461 462 463 464 465 466 467 468 469
     *
     * @mbg.generated
     */
    public Integer getDataType() {
        return dataType;
    }

    /**
     * This method was generated by MyBatis Generator.
470
     * This method sets the value of the database column period_cell_template.data_type
471
     *
472
     * @param dataType the value for period_cell_template.data_type
473 474 475 476 477 478 479 480 481
     *
     * @mbg.generated
     */
    public void setDataType(Integer dataType) {
        this.dataType = dataType;
    }

    /**
     * This method was generated by MyBatis Generator.
482
     * This method returns the value of the database column period_cell_template.is_read_only
483
     *
484
     * @return the value of period_cell_template.is_read_only
485 486 487
     *
     * @mbg.generated
     */
488
    public Boolean getIsReadOnly() {
489 490 491 492 493
        return isReadOnly;
    }

    /**
     * This method was generated by MyBatis Generator.
494
     * This method sets the value of the database column period_cell_template.is_read_only
495
     *
496
     * @param isReadOnly the value for period_cell_template.is_read_only
497 498 499
     *
     * @mbg.generated
     */
500
    public void setIsReadOnly(Boolean isReadOnly) {
501 502 503 504 505
        this.isReadOnly = isReadOnly;
    }

    /**
     * This method was generated by MyBatis Generator.
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
     * This method returns the value of the database column period_cell_template.copy_from_id
     *
     * @return the value of period_cell_template.copy_from_id
     *
     * @mbg.generated
     */
    public Long getCopyFromId() {
        return copyFromId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column period_cell_template.copy_from_id
     *
     * @param copyFromId the value for period_cell_template.copy_from_id
     *
     * @mbg.generated
     */
    public void setCopyFromId(Long copyFromId) {
        this.copyFromId = copyFromId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column period_cell_template.create_by
     *
     * @return the value of period_cell_template.create_by
     *
     * @mbg.generated
     */
    public String getCreateBy() {
        return createBy;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column period_cell_template.create_by
     *
     * @param createBy the value for period_cell_template.create_by
     *
     * @mbg.generated
     */
    public void setCreateBy(String createBy) {
        this.createBy = createBy == null ? null : createBy.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column period_cell_template.update_by
     *
     * @return the value of period_cell_template.update_by
     *
     * @mbg.generated
     */
    public String getUpdateBy() {
        return updateBy;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column period_cell_template.update_by
     *
     * @param updateBy the value for period_cell_template.update_by
     *
     * @mbg.generated
     */
    public void setUpdateBy(String updateBy) {
        this.updateBy = updateBy == null ? null : updateBy.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table period_cell_template
579 580 581 582 583 584 585 586 587
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
588 589 590
        sb.append(", id=").append(id);
        sb.append(", period=").append(period);
        sb.append(", reportTemplateId=").append(reportTemplateId);
591 592 593 594 595 596 597
        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);
598
        sb.append(", cellTemplateId=").append(cellTemplateId);
599 600
        sb.append(", dataType=").append(dataType);
        sb.append(", isReadOnly=").append(isReadOnly);
601 602 603
        sb.append(", copyFromId=").append(copyFromId);
        sb.append(", createBy=").append(createBy);
        sb.append(", updateBy=").append(updateBy);
604 605 606 607
        sb.append("]");
        return sb.toString();
    }
}