CellDataDto.java 5.92 KB
Newer Older
1 2
package pwc.taxtech.atms.dto.vatdto;

3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import pwc.taxtech.atms.dto.CellTemplateConfigDto;
5
import pwc.taxtech.atms.vat.entity.PeriodModifiedReportCell;
6 7 8 9

import java.util.List;

public class CellDataDto {
10 11 12 13
    @JsonProperty("cellID")
    private String cellId;
    @JsonProperty("reportID")
    private String reportId;
14

15
    private int columnIndex;
16

17
    private String columnName;
18

19
    private int rowIndex;
20

21
    private String rowName;
22

23
    private String formula;
24

25
    private Boolean isCalculated;
26

27
    private String cellValue;
sherlock's avatar
sherlock committed
28 29 30

    private String keyinData;

31 32 33 34
    @JsonProperty("cellTemplateID")
    private String cellTemplateId;
    @JsonProperty("reportTemplateID")
    private String reportTemplateId;
35

36
    private Integer dataType;
37

38
    private Boolean isReadOnly;
39

40 41
    private String dataSourceExp;
    private String formulaExp;
42

43
    private String description;
44

45
    private Boolean dataSourceAvailable;
46

47
    private CellTemplateConfigDto cellTemplateConfig;
48

49
    private List<DataSourceDto> dataSourceList;
50

51
    private List<InvoiceListDto> dataInvoiceList;
52 53

    //是否是用户手工调整过得值
54
    private Boolean isModified;
55 56

    //用户直接修改单元格的信息
57
    private PeriodModifiedReportCell modifiedReportCell;
58

59
    private List<CellVoucherDatasourceDto> dataVoucherList;
60

61
    private Boolean isConfigured;
eddie.woo's avatar
eddie.woo committed
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 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 248 249 250 251 252 253 254 255 256 257 258 259 260 261

    public String getCellId() {
        return this.cellId;
    }

    public void setCellId(String cellId) {
        this.cellId = cellId;
    }

    public String getReportId() {
        return this.reportId;
    }

    public void setReportId(String reportId) {
        this.reportId = reportId;
    }

    public int getColumnIndex() {
        return this.columnIndex;
    }

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

    public String getColumnName() {
        return this.columnName;
    }

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

    public int getRowIndex() {
        return this.rowIndex;
    }

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

    public String getRowName() {
        return this.rowName;
    }

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

    public String getFormula() {
        return this.formula;
    }

    public void setFormula(String formula) {
        this.formula = formula;
    }

    public Boolean getIsCalculated() {
        return this.isCalculated;
    }

    public void setIsCalculated(Boolean calculated) {
        this.isCalculated = calculated;
    }

    public String getCellValue() {
        return this.cellValue;
    }

    public void setCellValue(String cellValue) {
        this.cellValue = cellValue;
    }

    public String getKeyinData() {
        return this.keyinData;
    }

    public void setKeyinData(String keyinData) {
        this.keyinData = keyinData;
    }

    public String getCellTemplateId() {
        return this.cellTemplateId;
    }

    public void setCellTemplateId(String cellTemplateId) {
        this.cellTemplateId = cellTemplateId;
    }

    public String getReportTemplateId() {
        return this.reportTemplateId;
    }

    public void setReportTemplateId(String reportTemplateId) {
        this.reportTemplateId = reportTemplateId;
    }

    public Integer getDataType() {
        return this.dataType;
    }

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

    public Boolean getIsReadOnly() {
        return this.isReadOnly;
    }

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

    public String getDataSourceExp() {
        return this.dataSourceExp;
    }

    public void setDataSourceExp(String dataSourceExp) {
        this.dataSourceExp = dataSourceExp;
    }

    public String getFormulaExp() {
        return this.formulaExp;
    }

    public void setFormulaExp(String formulaExp) {
        this.formulaExp = formulaExp;
    }

    public String getDescription() {
        return this.description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public Boolean getDataSourceAvailable() {
        return this.dataSourceAvailable;
    }

    public void setDataSourceAvailable(Boolean dataSourceAvailable) {
        this.dataSourceAvailable = dataSourceAvailable;
    }

    public CellTemplateConfigDto getCellTemplateConfig() {
        return this.cellTemplateConfig;
    }

    public void setCellTemplateConfig(CellTemplateConfigDto cellTemplateConfig) {
        this.cellTemplateConfig = cellTemplateConfig;
    }

    public List<DataSourceDto> getDataSourceList() {
        return this.dataSourceList;
    }

    public void setDataSourceList(List<DataSourceDto> dataSourceList) {
        this.dataSourceList = dataSourceList;
    }

    public List<InvoiceListDto> getDataInvoiceList() {
        return this.dataInvoiceList;
    }

    public void setDataInvoiceList(List<InvoiceListDto> dataInvoiceList) {
        this.dataInvoiceList = dataInvoiceList;
    }

    public Boolean getIsModified() {
        return this.isModified;
    }

    public void setIsModified(Boolean modified) {
        this.isModified = modified;
    }

    public PeriodModifiedReportCell getModifiedReportCell() {
        return this.modifiedReportCell;
    }

    public void setModifiedReportCell(PeriodModifiedReportCell modifiedReportCell) {
        this.modifiedReportCell = modifiedReportCell;
    }

    public List<CellVoucherDatasourceDto> getDataVoucherList() {
        return this.dataVoucherList;
    }

    public void setDataVoucherList(List<CellVoucherDatasourceDto> dataVoucherList) {
        this.dataVoucherList = dataVoucherList;
    }

    public Boolean getIsConfigured() {
        return this.isConfigured;
    }

    public void setIsConfigured(Boolean configured) {
        this.isConfigured = configured;
    }
262
}