PeriodCellTemplateConfigExtendDto.java 2.33 KB
Newer Older
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
package pwc.taxtech.atms.vat.dpo;

import pwc.taxtech.atms.CommonUtils;
import pwc.taxtech.atms.vat.entity.PeriodCellTemplateConfig;

public class PeriodCellTemplateConfigExtendDto extends PeriodCellTemplateConfig {
    Integer columnIndex;
    Integer rowIndex;
    String columnName;
    String rowName;
    Integer dataType;
    Boolean isReadOnly;
    Long cellTemplateID;
    Long reportTemplateID;
    String comment;
    PeriodCellTemplateConfig periodCellTemplateConfig;

    public PeriodCellTemplateConfig getPeriodCellTemplateConfig() {
        periodCellTemplateConfig = new PeriodCellTemplateConfig();
        CommonUtils.copyProperties(this, periodCellTemplateConfig);
        return periodCellTemplateConfig;
    }

    public Integer getColumnIndex() {
        return columnIndex;
    }

    public void setColumnIndex(Integer columnIndex) {
        this.columnIndex = columnIndex;
    }

    public Integer getRowIndex() {
        return rowIndex;
    }

    public void setRowIndex(Integer rowIndex) {
        this.rowIndex = rowIndex;
    }

    public String getColumnName() {
        return columnName;
    }

    public void setColumnName(String columnName) {
        this.columnName = columnName;
    }

    public String getRowName() {
        return rowName;
    }

    public void setRowName(String rowName) {
        this.rowName = rowName;
    }

    public Integer getDataType() {
        return dataType;
    }

    public void setDataType(Integer dataType) {
        this.dataType = dataType;
    }

    public Boolean getReadOnly() {
        return isReadOnly;
    }

    public void setReadOnly(Boolean readOnly) {
        isReadOnly = readOnly;
    }

    public Long getCellTemplateID() {
        return cellTemplateID;
    }

    public void setCellTemplateID(Long cellTemplateID) {
        this.cellTemplateID = cellTemplateID;
    }

    public Long getReportTemplateID() {
        return reportTemplateID;
    }

    public void setReportTemplateID(Long reportTemplateID) {
        this.reportTemplateID = reportTemplateID;
    }

    public String getComment() {
        return comment;
    }

    public void setComment(String comment) {
        this.comment = comment;
    }

    public void setPeriodCellTemplateConfig(PeriodCellTemplateConfig periodCellTemplateConfig) {
        this.periodCellTemplateConfig = periodCellTemplateConfig;
    }

}