CellTemplateDto.java 2.19 KB
Newer Older
1 2
package pwc.taxtech.atms.dto;

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

5
public class CellTemplateDto {
6
    @JsonProperty("ID")
7
    private String id;
8
    @JsonProperty("reportTemplateID")
9
    private String reportTemplateId;
10 11 12 13 14
    private int rowIndex;
    private String rowName;
    private int columnIndex;
    private String columnName;
    private String comment;
15
    @JsonProperty("copyFromID")
16
    private String copyFromId;
17 18 19 20 21 22 23 24 25 26 27
    private Integer dataType;
    private Integer isReadOnly;

    /**
     * 单元格的值(从Excel导入的单元格数据)
     */
    private String CellValue;

    public CellTemplateDto() {
    }

28 29
    public String getId() {
        return id;
30 31
    }

32 33
    public void setId(String id) {
        this.id = id;
34 35
    }

36 37
    public String getReportTemplateId() {
        return reportTemplateId;
38 39
    }

40 41
    public void setReportTemplateId(String reportTemplateId) {
        this.reportTemplateId = reportTemplateId;
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
    }

    public int getRowIndex() {
        return rowIndex;
    }

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

    public String getRowName() {
        return rowName;
    }

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

    public int getColumnIndex() {
        return columnIndex;
    }

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

    public String getColumnName() {
        return columnName;
    }

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

    public String getComment() {
        return comment;
    }

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

84 85
    public String getCopyFromId() {
        return copyFromId;
86 87
    }

88 89
    public void setCopyFromId(String copyFromId) {
        this.copyFromId = copyFromId;
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    }

    public Integer getDataType() {
        return dataType;
    }

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

    public Integer getIsReadOnly() {
        return isReadOnly;
    }

    public void setIsReadOnly(Integer isReadOnly) {
        this.isReadOnly = isReadOnly;
    }
}