CellTemplateConfigGroupDto.java 2.44 KB
Newer Older
1 2 3
package pwc.taxtech.atms.dpo;


4
import com.fasterxml.jackson.annotation.JsonProperty;
5 6 7 8 9 10 11 12 13 14 15 16 17 18

public class CellTemplateConfigGroupDto {
    Integer columnIndex;

    Integer rowIndex;

    String columnName;

    String rowName;

    Integer dataType;

    Boolean isReadOnly;

19 20
    @JsonProperty("cellTemplateID")
    Long cellTemplateId;
21

22 23
    @JsonProperty("reportTemplateID")
    Long reportTemplateId;
24 25 26 27 28

    String comment;

    public CellTemplateConfigGroupDto(Integer columnIndex, Integer rowIndex
            , String columnName, String rowName, Integer dataType, Boolean isReadOnly
29
            , Long cellTemplateId, Long reportTemplateId, String comment) {
30 31 32 33 34 35
        this.columnIndex = columnIndex;
        this.rowIndex = rowIndex;
        this.columnName = columnName;
        this.rowName = rowName;
        this.dataType = dataType;
        this.isReadOnly = isReadOnly;
36 37
        this.cellTemplateId = cellTemplateId;
        this.reportTemplateId = reportTemplateId;
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
        this.comment = comment;
    }


    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;
    }

90 91
    public String getComment() {
        return comment;
92 93
    }

94 95
    public void setComment(String comment) {
        this.comment = comment;
96 97
    }

98 99
    public Long getCellTemplateId() {
        return cellTemplateId;
100 101
    }

102 103
    public void setCellTemplateId(Long cellTemplateId) {
        this.cellTemplateId = cellTemplateId;
104 105
    }

106 107
    public Long getReportTemplateId() {
        return reportTemplateId;
108 109
    }

110 111
    public void setReportTemplateId(Long reportTemplateId) {
        this.reportTemplateId = reportTemplateId;
112 113
    }
}