BudgetSpreadCellData.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. package cn.com.lzt.budget.data.dto;
  2. import java.math.BigDecimal;
  3. import java.util.HashMap;
  4. import java.util.Map;
  5. public class BudgetSpreadCellData {
  6. private BigDecimal value;
  7. private String txtValue;
  8. private String dataType;
  9. private String showType;
  10. private String formula;
  11. private Integer expect;//1预期数 0实际数
  12. private Integer includeTax;
  13. private String functionId;
  14. private String measureId;
  15. private String measureName;
  16. private String controlFlag;
  17. private String entityId;
  18. private String entityName;
  19. private Integer row;
  20. private Integer col;
  21. private Map<String,Object> dataRules = new HashMap<>();
  22. private Integer sheetIndex;
  23. private Integer readOnly;
  24. private String findKey;
  25. private Map<String,Object> cellMapRef;
  26. public void addDataRule(String key ,Object value){
  27. dataRules.put(key,value );
  28. }
  29. public BigDecimal getValue() {
  30. return value;
  31. }
  32. public void setValue(BigDecimal value) {
  33. this.value = value;
  34. }
  35. public String getFormula() {
  36. return formula;
  37. }
  38. public void setFormula(String formula) {
  39. this.formula = formula;
  40. }
  41. public Integer getExpect() {
  42. return expect;
  43. }
  44. public void setExpect(Integer expect) {
  45. this.expect = expect;
  46. }
  47. public Integer getRow() {
  48. return row;
  49. }
  50. public void setRow(Integer row) {
  51. this.row = row;
  52. }
  53. public Integer getCol() {
  54. return col;
  55. }
  56. public void setCol(Integer col) {
  57. this.col = col;
  58. }
  59. public String getTxtValue() {
  60. return txtValue;
  61. }
  62. public void setTxtValue(String txtValue) {
  63. this.txtValue = txtValue;
  64. }
  65. public Integer getIncludeTax() {
  66. return includeTax;
  67. }
  68. public void setIncludeTax(Integer includeTax) {
  69. this.includeTax = includeTax;
  70. }
  71. public String getFunctionId() {
  72. return functionId;
  73. }
  74. public void setFunctionId(String functionId) {
  75. this.functionId = functionId;
  76. }
  77. public String getMeasureId() {
  78. return measureId;
  79. }
  80. public void setMeasureId(String measureId) {
  81. this.measureId = measureId;
  82. }
  83. public String getMeasureName() {
  84. return measureName;
  85. }
  86. public void setMeasureName(String measureName) {
  87. this.measureName = measureName;
  88. }
  89. public String getControlFlag() {
  90. return controlFlag;
  91. }
  92. public void setControlFlag(String controlFlag) {
  93. this.controlFlag = controlFlag;
  94. }
  95. public Map<String, Object> getDataRules() {
  96. return dataRules;
  97. }
  98. public void setDataRules(Map<String, Object> dataRules) {
  99. this.dataRules = dataRules;
  100. }
  101. public Integer getReadOnly() {
  102. return readOnly;
  103. }
  104. public void setReadOnly(Integer readOnly) {
  105. this.readOnly = readOnly;
  106. }
  107. public String getEntityId() {
  108. return entityId;
  109. }
  110. public void setEntityId(String entityId) {
  111. this.entityId = entityId;
  112. }
  113. public String getEntityName() {
  114. return entityName;
  115. }
  116. public void setEntityName(String entityName) {
  117. this.entityName = entityName;
  118. }
  119. public Integer getSheetIndex() {
  120. return sheetIndex;
  121. }
  122. public void setSheetIndex(Integer sheetIndex) {
  123. this.sheetIndex = sheetIndex;
  124. }
  125. public String getFindKey() {
  126. return findKey;
  127. }
  128. public void setFindKey(String findKey) {
  129. this.findKey = findKey;
  130. }
  131. public String getDataType() {
  132. return dataType;
  133. }
  134. public void setDataType(String dataType) {
  135. this.dataType = dataType;
  136. }
  137. public String getShowType() {
  138. return showType;
  139. }
  140. public void setShowType(String showType) {
  141. this.showType = showType;
  142. }
  143. public Map<String, Object> getCellMapRef() {
  144. return cellMapRef;
  145. }
  146. public void setCellMapRef(Map<String, Object> cellMapRef) {
  147. this.cellMapRef = cellMapRef;
  148. }
  149. }