InputProjectStatistics.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. package com.goafanti.order.bo;
  2. public class InputProjectStatistics {
  3. private String startDate;
  4. private String endDate;
  5. private String depId;
  6. private String thchDepId;
  7. private String projectStatus;
  8. private Integer projectType;
  9. private String orderNo;
  10. private String contractNo;
  11. private String userName;
  12. private Integer declarationBatch;
  13. private Integer projectSituation;
  14. private Integer projectAmount;
  15. private Integer pageNo;
  16. private Integer pageSize;
  17. private Integer status;
  18. private String depName;
  19. private String thchDepName;
  20. private String projectStatusName;
  21. private String projectTypeName;
  22. private Integer province;
  23. private String projectId;
  24. /**
  25. * 筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请
  26. */
  27. private Integer screen;
  28. public Integer getStatus() {
  29. return status;
  30. }
  31. public void setStatus(Integer status) {
  32. this.status = status;
  33. }
  34. public String getDepName() {
  35. return depName;
  36. }
  37. public void setDepName(String depName) {
  38. this.depName = depName;
  39. }
  40. public String getThchDepName() {
  41. return thchDepName;
  42. }
  43. public void setThchDepName(String thchDepName) {
  44. this.thchDepName = thchDepName;
  45. }
  46. public String getStartDate() {
  47. return startDate;
  48. }
  49. public void setStartDate(String startDate) {
  50. this.startDate = startDate;
  51. }
  52. public String getEndDate() {
  53. return endDate;
  54. }
  55. public void setEndDate(String endDate) {
  56. this.endDate = endDate;
  57. }
  58. public String getDepId() {
  59. return depId;
  60. }
  61. public void setDepId(String depId) {
  62. this.depId = depId;
  63. }
  64. public String getThchDepId() {
  65. return thchDepId;
  66. }
  67. public void setThchDepId(String thchDepId) {
  68. this.thchDepId = thchDepId;
  69. }
  70. public String getProjectStatus() {
  71. return projectStatus;
  72. }
  73. public void setProjectStatus(String projectStatus) {
  74. this.projectStatus = projectStatus;
  75. }
  76. public Integer getProjectType() {
  77. return projectType;
  78. }
  79. public void setProjectType(Integer projectType) {
  80. this.projectType = projectType;
  81. }
  82. public String getOrderNo() {
  83. return orderNo;
  84. }
  85. public void setOrderNo(String orderNo) {
  86. this.orderNo = orderNo;
  87. }
  88. public String getContractNo() {
  89. return contractNo;
  90. }
  91. public void setContractNo(String contractNo) {
  92. this.contractNo = contractNo;
  93. }
  94. public String getUserName() {
  95. return userName;
  96. }
  97. public void setUserName(String userName) {
  98. this.userName = userName;
  99. }
  100. public Integer getDeclarationBatch() {
  101. return declarationBatch;
  102. }
  103. public void setDeclarationBatch(Integer declarationBatch) {
  104. this.declarationBatch = declarationBatch;
  105. }
  106. public Integer getProjectSituation() {
  107. return projectSituation;
  108. }
  109. public void setProjectSituation(Integer projectSituation) {
  110. this.projectSituation = projectSituation;
  111. }
  112. public Integer getPageNo() {
  113. return pageNo;
  114. }
  115. public void setPageNo(Integer pageNo) {
  116. this.pageNo = pageNo;
  117. }
  118. public Integer getPageSize() {
  119. return pageSize;
  120. }
  121. public void setPageSize(Integer pageSize) {
  122. this.pageSize = pageSize;
  123. }
  124. public Integer getProjectAmount() {
  125. return projectAmount;
  126. }
  127. public void setProjectAmount(Integer projectAmount) {
  128. this.projectAmount = projectAmount;
  129. }
  130. public String getProjectStatusName() {
  131. return projectStatusName;
  132. }
  133. public void setProjectStatusName(String projectStatusName) {
  134. this.projectStatusName = projectStatusName;
  135. }
  136. public String getProjectTypeName() {
  137. return projectTypeName;
  138. }
  139. public void setProjectTypeName(String projectTypeName) {
  140. this.projectTypeName = projectTypeName;
  141. }
  142. public Integer getProvince() {
  143. return province;
  144. }
  145. public void setProvince(Integer province) {
  146. this.province = province;
  147. }
  148. public String getProjectId() {
  149. return projectId;
  150. }
  151. public void setProjectId(String projectId) {
  152. this.projectId = projectId;
  153. }
  154. public Integer getScreen() {
  155. return screen;
  156. }
  157. public void setScreen(Integer screen) {
  158. this.screen = screen;
  159. }
  160. }