| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- 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<String,Object> dataRules = new HashMap<>();
- private Integer sheetIndex;
- private Integer readOnly;
- private String findKey;
- private Map<String,Object> 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<String, Object> getDataRules() {
- return dataRules;
- }
- public void setDataRules(Map<String, Object> 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<String, Object> getCellMapRef() {
- return cellMapRef;
- }
- public void setCellMapRef(Map<String, Object> cellMapRef) {
- this.cellMapRef = cellMapRef;
- }
- }
|