BudgetCalc.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package cn.com.lzt.budget.data.dto;
  2. import java.math.BigDecimal;
  3. public class BudgetCalc {
  4. private String functionId;
  5. private String measureId;
  6. private String entityId;
  7. private String periodDetailId;
  8. private boolean deep;
  9. private boolean update;
  10. private Integer row;
  11. private Integer col;
  12. private BigDecimal value;
  13. public String getFunctionId() {
  14. return functionId;
  15. }
  16. public void setFunctionId(String functionId) {
  17. this.functionId = functionId;
  18. }
  19. public String getMeasureId() {
  20. return measureId;
  21. }
  22. public void setMeasureId(String measureId) {
  23. this.measureId = measureId;
  24. }
  25. public String getEntityId() {
  26. return entityId;
  27. }
  28. public void setEntityId(String entityId) {
  29. this.entityId = entityId;
  30. }
  31. public String getPeriodDetailId() {
  32. return periodDetailId;
  33. }
  34. public void setPeriodDetailId(String periodDetailId) {
  35. this.periodDetailId = periodDetailId;
  36. }
  37. public boolean isDeep() {
  38. return deep;
  39. }
  40. public void setDeep(boolean deep) {
  41. this.deep = deep;
  42. }
  43. public boolean isUpdate() {
  44. return update;
  45. }
  46. public void setUpdate(boolean update) {
  47. this.update = update;
  48. }
  49. public Integer getRow() {
  50. return row;
  51. }
  52. public void setRow(Integer row) {
  53. this.row = row;
  54. }
  55. public Integer getCol() {
  56. return col;
  57. }
  58. public void setCol(Integer col) {
  59. this.col = col;
  60. }
  61. public BigDecimal getValue() {
  62. return value;
  63. }
  64. public void setValue(BigDecimal value) {
  65. this.value = value;
  66. }
  67. }