OutProvincialStatistics.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. /** 库存数 */
  8. private Integer stockCount;
  9. /** 派单数 */
  10. private Integer distributeCount;
  11. /** 完成数 */
  12. private Integer completeCount;
  13. /** 立项数 */
  14. private Integer setUpCount;
  15. /** 抽查数 */
  16. private Integer spotCheckCount;
  17. /** 未通过数 */
  18. private Integer failedCount;
  19. /** 授理数 */
  20. private Integer acceptCount;
  21. /** 授权数 */
  22. private Integer authorizeCount;
  23. /** 驳回数 */
  24. private Integer rejectCount;
  25. /** 下证数 */
  26. private Integer certificatesCount;
  27. /** 申请数 */
  28. private Integer applyCount;
  29. private BigDecimal amountCount;
  30. private BigDecimal costAmount;
  31. private BigDecimal profit;
  32. public Integer getAcceptCount() {
  33. return acceptCount;
  34. }
  35. public void setAcceptCount(Integer acceptCount) {
  36. this.acceptCount = acceptCount;
  37. }
  38. public Integer getAuthorizeCount() {
  39. return authorizeCount;
  40. }
  41. public void setAuthorizeCount(Integer authorizeCount) {
  42. this.authorizeCount = authorizeCount;
  43. }
  44. public Integer getRejectCount() {
  45. return rejectCount;
  46. }
  47. public void setRejectCount(Integer rejectCount) {
  48. this.rejectCount = rejectCount;
  49. }
  50. public Integer getStockCount() {
  51. return stockCount;
  52. }
  53. public void setStockCount(Integer stockCount) {
  54. this.stockCount = stockCount;
  55. }
  56. public Integer getDistributeCount() {
  57. return distributeCount;
  58. }
  59. public void setDistributeCount(Integer distributeCount) {
  60. this.distributeCount = distributeCount;
  61. }
  62. public Integer getCompleteCount() {
  63. return completeCount;
  64. }
  65. public void setCompleteCount(Integer completeCount) {
  66. this.completeCount = completeCount;
  67. }
  68. public Integer getSetUpCount() {
  69. return setUpCount;
  70. }
  71. public void setSetUpCount(Integer setUpCount) {
  72. this.setUpCount = setUpCount;
  73. }
  74. public Integer getSpotCheckCount() {
  75. return spotCheckCount;
  76. }
  77. public void setSpotCheckCount(Integer spotCheckCount) {
  78. this.spotCheckCount = spotCheckCount;
  79. }
  80. public Integer getFailedCount() {
  81. return failedCount;
  82. }
  83. public void setFailedCount(Integer failedCount) {
  84. this.failedCount = failedCount;
  85. }
  86. public String getProvinceName() {
  87. return provinceName;
  88. }
  89. public void setProvinceName(String provinceName) {
  90. this.provinceName = provinceName;
  91. }
  92. public String getThchDepName() {
  93. return thchDepName;
  94. }
  95. public void setThchDepName(String thchDepName) {
  96. this.thchDepName = thchDepName;
  97. }
  98. public String getProjectStatus() {
  99. return projectStatus;
  100. }
  101. public void setProjectStatus(String projectStatus) {
  102. this.projectStatus = projectStatus;
  103. }
  104. public BigDecimal getAmountCount() {
  105. return amountCount;
  106. }
  107. public void setAmountCount(BigDecimal amountCount) {
  108. this.amountCount = amountCount;
  109. }
  110. public BigDecimal getCostAmount() {
  111. return costAmount;
  112. }
  113. public void setCostAmount(BigDecimal costAmount) {
  114. this.costAmount = costAmount;
  115. }
  116. public BigDecimal getProfit() {
  117. return profit;
  118. }
  119. public void setProfit(BigDecimal profit) {
  120. this.profit = profit;
  121. }
  122. public Integer getCertificatesCount() {
  123. return certificatesCount;
  124. }
  125. public void setCertificatesCount(Integer certificatesCount) {
  126. this.certificatesCount = certificatesCount;
  127. }
  128. public Integer getApplyCount() {
  129. return applyCount;
  130. }
  131. public void setApplyCount(Integer applyCount) {
  132. this.applyCount = applyCount;
  133. }
  134. }