JkxlData.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. package com.jeeplus.modules.sg.entity;
  2. public class JkxlData {
  3. private String id;
  4. private String wbsCode;
  5. private Double originalTotalCost;
  6. private Double originalRgCost;
  7. private Double originalCbrCost;
  8. private Double originalFbrCost;
  9. private Double originalZgj;
  10. private Double originalJxCost;
  11. private Double totalCost;
  12. private Double rgCost;
  13. private Double cbrCost;
  14. private Double fbrCost;
  15. private Double zgj;
  16. private Double jxCost;
  17. private Double measuresFee1;
  18. private Double measuresFee2;
  19. private Double otherCost;
  20. private Double fees;
  21. private Double tax;
  22. private Double totalFee;
  23. public String getWbsCode() {
  24. return wbsCode;
  25. }
  26. public void setWbsCode(String wbsCode) {
  27. this.wbsCode = wbsCode;
  28. }
  29. public Double getTotalFee() {
  30. return totalFee;
  31. }
  32. public void setTotalFee(Double totalFee) {
  33. this.totalFee = totalFee;
  34. }
  35. public String getId() {
  36. return id;
  37. }
  38. public void setId(String id) {
  39. this.id = id;
  40. }
  41. public Double getOriginalTotalCost() {
  42. return originalTotalCost;
  43. }
  44. public void setOriginalTotalCost(Double originalTotalCost) {
  45. this.originalTotalCost = originalTotalCost;
  46. }
  47. public Double getOriginalRgCost() {
  48. return originalRgCost;
  49. }
  50. public void setOriginalRgCost(Double originalRgCost) {
  51. this.originalRgCost = originalRgCost;
  52. }
  53. public Double getOriginalCbrCost() {
  54. return originalCbrCost;
  55. }
  56. public void setOriginalCbrCost(Double originalCbrCost) {
  57. this.originalCbrCost = originalCbrCost;
  58. }
  59. public Double getOriginalFbrCost() {
  60. return originalFbrCost;
  61. }
  62. public void setOriginalFbrCost(Double originalFbrCost) {
  63. this.originalFbrCost = originalFbrCost;
  64. }
  65. public Double getOriginalZgj() {
  66. return originalZgj;
  67. }
  68. public void setOriginalZgj(Double originalZgj) {
  69. this.originalZgj = originalZgj;
  70. }
  71. public Double getOriginalJxCost() {
  72. return originalJxCost;
  73. }
  74. public void setOriginalJxCost(Double originalJxCost) {
  75. this.originalJxCost = originalJxCost;
  76. }
  77. public Double getTotalCost() {
  78. return totalCost;
  79. }
  80. public void setTotalCost(Double totalCost) {
  81. this.totalCost = totalCost;
  82. }
  83. public Double getRgCost() {
  84. return rgCost;
  85. }
  86. public void setRgCost(Double rgCost) {
  87. this.rgCost = rgCost;
  88. }
  89. public Double getCbrCost() {
  90. return cbrCost;
  91. }
  92. public void setCbrCost(Double cbrCost) {
  93. this.cbrCost = cbrCost;
  94. }
  95. public Double getFbrCost() {
  96. return fbrCost;
  97. }
  98. public void setFbrCost(Double fbrCost) {
  99. this.fbrCost = fbrCost;
  100. }
  101. public Double getZgj() {
  102. return zgj;
  103. }
  104. public void setZgj(Double zgj) {
  105. this.zgj = zgj;
  106. }
  107. public Double getJxCost() {
  108. return jxCost;
  109. }
  110. public void setJxCost(Double jxCost) {
  111. this.jxCost = jxCost;
  112. }
  113. public Double getMeasuresFee1() {
  114. return measuresFee1;
  115. }
  116. public void setMeasuresFee1(Double measuresFee1) {
  117. this.measuresFee1 = measuresFee1;
  118. }
  119. public Double getMeasuresFee2() {
  120. return measuresFee2;
  121. }
  122. public void setMeasuresFee2(Double measuresFee2) {
  123. this.measuresFee2 = measuresFee2;
  124. }
  125. public Double getOtherCost() {
  126. return otherCost;
  127. }
  128. public void setOtherCost(Double otherCost) {
  129. this.otherCost = otherCost;
  130. }
  131. public Double getFees() {
  132. return fees;
  133. }
  134. public void setFees(Double fees) {
  135. this.fees = fees;
  136. }
  137. public Double getTax() {
  138. return tax;
  139. }
  140. public void setTax(Double tax) {
  141. this.tax = tax;
  142. }
  143. }