CellTemplatePerGroupDto.java 2.37 KB
Newer Older
1 2
package pwc.taxtech.atms.dpo;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

5
public class CellTemplatePerGroupDto {
6 7 8 9 10 11 12 13 14 15 16 17
    @JsonProperty("cellTemplateID")
    private String cellTemplateId;
    @JsonProperty("reportTemplateID")
    private String reportTemplateId;
    @JsonProperty("reportTemplateGroupID")
    private String reportTemplateGroupId;
    private int rowIndex;
    private int columnIndex;
    private String reportCode;
    private String rowName;
    private String columnName;
    private Integer resultType;
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
    private Long Content;
    String Data;

    public String getData() {
        return Data;
    }

    public void setData(String data) {
        Data = data;
    }

    public Long getContent() {
        return Content;
    }

    public void setContent(Long content) {
        Content = content;
    }
36

neo's avatar
neo committed
37 38
    public String getCellTemplateId() {
        return cellTemplateId;
39 40
    }

neo's avatar
neo committed
41 42
    public void setCellTemplateId(String cellTemplateId) {
        this.cellTemplateId = cellTemplateId;
43 44
    }

neo's avatar
neo committed
45 46
    public String getReportTemplateId() {
        return reportTemplateId;
47 48
    }

neo's avatar
neo committed
49 50
    public void setReportTemplateId(String reportTemplateId) {
        this.reportTemplateId = reportTemplateId;
51 52
    }

neo's avatar
neo committed
53 54
    public String getReportTemplateGroupId() {
        return reportTemplateGroupId;
55 56
    }

neo's avatar
neo committed
57 58
    public void setReportTemplateGroupId(String reportTemplateGroupId) {
        this.reportTemplateGroupId = reportTemplateGroupId;
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 101 102 103 104 105 106 107 108
    }

    public int getRowIndex() {
        return rowIndex;
    }

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

    public int getColumnIndex() {
        return columnIndex;
    }

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

    public String getReportCode() {
        return reportCode;
    }

    public void setReportCode(String reportCode) {
        this.reportCode = reportCode;
    }

    public String getRowName() {
        return rowName;
    }

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

    public String getColumnName() {
        return columnName;
    }

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

    public Integer getResultType() {
        return resultType;
    }

    public void setResultType(Integer resultType) {
        this.resultType = resultType;
    }
}