package cn.com.lzt.budget.data.dto; import java.math.BigDecimal; import java.util.HashMap; import java.util.Map; public class BudgetSpreadCellData { private BigDecimal value; private String txtValue; private String dataType; private String showType; private String formula; private Integer expect;//1预期数 0实际数 private Integer includeTax; private String functionId; private String measureId; private String measureName; private String controlFlag; private String entityId; private String entityName; private Integer row; private Integer col; private Map dataRules = new HashMap<>(); private Integer sheetIndex; private Integer readOnly; private String findKey; private Map cellMapRef; public void addDataRule(String key ,Object value){ dataRules.put(key,value ); } public BigDecimal getValue() { return value; } public void setValue(BigDecimal value) { this.value = value; } public String getFormula() { return formula; } public void setFormula(String formula) { this.formula = formula; } public Integer getExpect() { return expect; } public void setExpect(Integer expect) { this.expect = expect; } public Integer getRow() { return row; } public void setRow(Integer row) { this.row = row; } public Integer getCol() { return col; } public void setCol(Integer col) { this.col = col; } public String getTxtValue() { return txtValue; } public void setTxtValue(String txtValue) { this.txtValue = txtValue; } public Integer getIncludeTax() { return includeTax; } public void setIncludeTax(Integer includeTax) { this.includeTax = includeTax; } public String getFunctionId() { return functionId; } public void setFunctionId(String functionId) { this.functionId = functionId; } public String getMeasureId() { return measureId; } public void setMeasureId(String measureId) { this.measureId = measureId; } public String getMeasureName() { return measureName; } public void setMeasureName(String measureName) { this.measureName = measureName; } public String getControlFlag() { return controlFlag; } public void setControlFlag(String controlFlag) { this.controlFlag = controlFlag; } public Map getDataRules() { return dataRules; } public void setDataRules(Map dataRules) { this.dataRules = dataRules; } public Integer getReadOnly() { return readOnly; } public void setReadOnly(Integer readOnly) { this.readOnly = readOnly; } public String getEntityId() { return entityId; } public void setEntityId(String entityId) { this.entityId = entityId; } public String getEntityName() { return entityName; } public void setEntityName(String entityName) { this.entityName = entityName; } public Integer getSheetIndex() { return sheetIndex; } public void setSheetIndex(Integer sheetIndex) { this.sheetIndex = sheetIndex; } public String getFindKey() { return findKey; } public void setFindKey(String findKey) { this.findKey = findKey; } public String getDataType() { return dataType; } public void setDataType(String dataType) { this.dataType = dataType; } public String getShowType() { return showType; } public void setShowType(String showType) { this.showType = showType; } public Map getCellMapRef() { return cellMapRef; } public void setCellMapRef(Map cellMapRef) { this.cellMapRef = cellMapRef; } }