OutProvincialStatistics.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. package com.goafanti.order.bo;
  2. import java.math.BigDecimal;
  3. public class OutProvincialStatistics {
  4. private String provinceName;
  5. private String thchDepName;
  6. private String projectStatus;
  7. private Integer province;
  8. private String thchDepId;
  9. private String bpId;
  10. /** 库存数 */
  11. private Integer stockCount;
  12. /** 派单数 */
  13. private Integer distributeCount;
  14. /** 完成数 */
  15. private Integer completeCount;
  16. /** 立项数 */
  17. private Integer setUpCount;
  18. /** 抽查数 */
  19. private Integer spotCheckCount;
  20. /** 未通过数 */
  21. private Integer failedCount;
  22. /** 授理数 */
  23. private Integer acceptCount;
  24. /** 授权数 */
  25. private Integer authorizeCount;
  26. /** 驳回数 */
  27. private Integer rejectCount;
  28. /** 下证数 */
  29. private Integer certificatesCount;
  30. /** 申请数 */
  31. private Integer applyCount;
  32. /** 公示数 */
  33. private Integer publicityCount;
  34. private BigDecimal amountCount;
  35. private BigDecimal costAmount;
  36. private BigDecimal profit;
  37. public Integer getProvince() {
  38. return province;
  39. }
  40. public void setProvince(Integer province) {
  41. this.province = province;
  42. }
  43. public String getThchDepId() {
  44. return thchDepId;
  45. }
  46. public void setThchDepId(String thchDepId) {
  47. this.thchDepId = thchDepId;
  48. }
  49. public String getBpId() {
  50. return bpId;
  51. }
  52. public void setBpId(String bpId) {
  53. this.bpId = bpId;
  54. }
  55. public Integer getAcceptCount() {
  56. return acceptCount;
  57. }
  58. public void setAcceptCount(Integer acceptCount) {
  59. this.acceptCount = acceptCount;
  60. }
  61. public Integer getAuthorizeCount() {
  62. return authorizeCount;
  63. }
  64. public void setAuthorizeCount(Integer authorizeCount) {
  65. this.authorizeCount = authorizeCount;
  66. }
  67. public Integer getRejectCount() {
  68. return rejectCount;
  69. }
  70. public void setRejectCount(Integer rejectCount) {
  71. this.rejectCount = rejectCount;
  72. }
  73. public Integer getStockCount() {
  74. return stockCount;
  75. }
  76. public void setStockCount(Integer stockCount) {
  77. this.stockCount = stockCount;
  78. }
  79. public Integer getDistributeCount() {
  80. return distributeCount;
  81. }
  82. public void setDistributeCount(Integer distributeCount) {
  83. this.distributeCount = distributeCount;
  84. }
  85. public Integer getCompleteCount() {
  86. return completeCount;
  87. }
  88. public void setCompleteCount(Integer completeCount) {
  89. this.completeCount = completeCount;
  90. }
  91. public Integer getSetUpCount() {
  92. return setUpCount;
  93. }
  94. public void setSetUpCount(Integer setUpCount) {
  95. this.setUpCount = setUpCount;
  96. }
  97. public Integer getSpotCheckCount() {
  98. return spotCheckCount;
  99. }
  100. public void setSpotCheckCount(Integer spotCheckCount) {
  101. this.spotCheckCount = spotCheckCount;
  102. }
  103. public Integer getFailedCount() {
  104. return failedCount;
  105. }
  106. public void setFailedCount(Integer failedCount) {
  107. this.failedCount = failedCount;
  108. }
  109. public String getProvinceName() {
  110. return provinceName;
  111. }
  112. public void setProvinceName(String provinceName) {
  113. this.provinceName = provinceName;
  114. }
  115. public String getThchDepName() {
  116. return thchDepName;
  117. }
  118. public void setThchDepName(String thchDepName) {
  119. this.thchDepName = thchDepName;
  120. }
  121. public String getProjectStatus() {
  122. return projectStatus;
  123. }
  124. public void setProjectStatus(String projectStatus) {
  125. this.projectStatus = projectStatus;
  126. }
  127. public BigDecimal getAmountCount() {
  128. return amountCount;
  129. }
  130. public void setAmountCount(BigDecimal amountCount) {
  131. this.amountCount = amountCount;
  132. }
  133. public BigDecimal getCostAmount() {
  134. return costAmount;
  135. }
  136. public void setCostAmount(BigDecimal costAmount) {
  137. this.costAmount = costAmount;
  138. }
  139. public BigDecimal getProfit() {
  140. return profit;
  141. }
  142. public void setProfit(BigDecimal profit) {
  143. this.profit = profit;
  144. }
  145. public Integer getCertificatesCount() {
  146. return certificatesCount;
  147. }
  148. public void setCertificatesCount(Integer certificatesCount) {
  149. this.certificatesCount = certificatesCount;
  150. }
  151. public Integer getApplyCount() {
  152. return applyCount;
  153. }
  154. public void setApplyCount(Integer applyCount) {
  155. this.applyCount = applyCount;
  156. }
  157. public Integer getPublicityCount() {
  158. return publicityCount;
  159. }
  160. public void setPublicityCount(Integer publicityCount) {
  161. this.publicityCount = publicityCount;
  162. }
  163. }