InputProjectStatistics.java 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. package com.goafanti.order.bo;
  2. public class InputProjectStatistics {
  3. private String startDate;
  4. private String endDate;
  5. private String deps;
  6. private String thchDeps;
  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. // 0通用 1高新 2双软 3软著 4专利 5会员 6审计
  18. private Integer status;
  19. private String depName;
  20. private String thchDepName;
  21. private String thchId;
  22. private String projectStatusName;
  23. private String projectTypeName;
  24. private Integer province;
  25. private String provinceName;
  26. private String projectId;
  27. private String type;
  28. /**
  29. * 筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请
  30. */
  31. private Integer screen;
  32. private Integer taskProjectStatus;
  33. /**
  34. * 满意度状态
  35. * 0未发放 1已发放 2已回收(非常满意) 3已回收(满意) 4已回收(一般) 5已回收(不满意)
  36. */
  37. private Integer sdStatus;
  38. /**
  39. * 是否签订保密协议:0=无,1=有
  40. */
  41. private Integer nda;
  42. /**
  43. * 是否有违约条件:0=无,1=有,有限责任违约条款、与技术服务有关,2=有,有限责任违约条款、与技术服务无有关,3=有,无限责任违约条款、与技术服务无有关,4=有,无限责任违约条款、与技术服务有关
  44. */
  45. private Integer breachClause;
  46. public Integer getNda() {
  47. return nda;
  48. }
  49. public void setNda(Integer nda) {
  50. this.nda = nda;
  51. }
  52. public Integer getBreachClause() {
  53. return breachClause;
  54. }
  55. public void setBreachClause(Integer breachClause) {
  56. this.breachClause = breachClause;
  57. }
  58. public String getType() {
  59. return type;
  60. }
  61. public void setType(String type) {
  62. this.type = type;
  63. }
  64. public Integer getSdStatus() {
  65. return sdStatus;
  66. }
  67. public void setSdStatus(Integer sdStatus) {
  68. this.sdStatus = sdStatus;
  69. }
  70. public Integer getTaskProjectStatus() {
  71. return taskProjectStatus;
  72. }
  73. public void setTaskProjectStatus(Integer taskProjectStatus) {
  74. this.taskProjectStatus = taskProjectStatus;
  75. }
  76. public String getThchId() {
  77. return thchId;
  78. }
  79. public void setThchId(String thchId) {
  80. this.thchId = thchId;
  81. }
  82. public String getProvinceName() {
  83. return provinceName;
  84. }
  85. public void setProvinceName(String provinceName) {
  86. this.provinceName = provinceName;
  87. }
  88. public Integer getStatus() {
  89. return status;
  90. }
  91. public void setStatus(Integer status) {
  92. this.status = status;
  93. }
  94. public String getDepName() {
  95. return depName;
  96. }
  97. public void setDepName(String depName) {
  98. this.depName = depName;
  99. }
  100. public String getThchDepName() {
  101. return thchDepName;
  102. }
  103. public void setThchDepName(String thchDepName) {
  104. this.thchDepName = thchDepName;
  105. }
  106. public String getStartDate() {
  107. return startDate;
  108. }
  109. public void setStartDate(String startDate) {
  110. this.startDate = startDate;
  111. }
  112. public String getEndDate() {
  113. return endDate;
  114. }
  115. public void setEndDate(String endDate) {
  116. this.endDate = endDate;
  117. }
  118. public String getDeps() {
  119. return deps;
  120. }
  121. public void setDeps(String deps) {
  122. this.deps = deps;
  123. }
  124. public String getThchDeps() {
  125. return thchDeps;
  126. }
  127. public void setThchDeps(String thchDeps) {
  128. this.thchDeps = thchDeps;
  129. }
  130. public String getProjectStatus() {
  131. return projectStatus;
  132. }
  133. public void setProjectStatus(String projectStatus) {
  134. this.projectStatus = projectStatus;
  135. }
  136. public Integer getProjectType() {
  137. return projectType;
  138. }
  139. public void setProjectType(Integer projectType) {
  140. this.projectType = projectType;
  141. }
  142. public String getOrderNo() {
  143. return orderNo;
  144. }
  145. public void setOrderNo(String orderNo) {
  146. this.orderNo = orderNo;
  147. }
  148. public String getContractNo() {
  149. return contractNo;
  150. }
  151. public void setContractNo(String contractNo) {
  152. this.contractNo = contractNo;
  153. }
  154. public String getUserName() {
  155. return userName;
  156. }
  157. public void setUserName(String userName) {
  158. this.userName = userName;
  159. }
  160. public Integer getDeclarationBatch() {
  161. return declarationBatch;
  162. }
  163. public void setDeclarationBatch(Integer declarationBatch) {
  164. this.declarationBatch = declarationBatch;
  165. }
  166. public Integer getProjectSituation() {
  167. return projectSituation;
  168. }
  169. public void setProjectSituation(Integer projectSituation) {
  170. this.projectSituation = projectSituation;
  171. }
  172. public Integer getPageNo() {
  173. return pageNo;
  174. }
  175. public void setPageNo(Integer pageNo) {
  176. this.pageNo = pageNo;
  177. }
  178. public Integer getPageSize() {
  179. return pageSize;
  180. }
  181. public void setPageSize(Integer pageSize) {
  182. this.pageSize = pageSize;
  183. }
  184. public Integer getProjectAmount() {
  185. return projectAmount;
  186. }
  187. public void setProjectAmount(Integer projectAmount) {
  188. this.projectAmount = projectAmount;
  189. }
  190. public String getProjectStatusName() {
  191. return projectStatusName;
  192. }
  193. public void setProjectStatusName(String projectStatusName) {
  194. this.projectStatusName = projectStatusName;
  195. }
  196. public String getProjectTypeName() {
  197. return projectTypeName;
  198. }
  199. public void setProjectTypeName(String projectTypeName) {
  200. this.projectTypeName = projectTypeName;
  201. }
  202. public Integer getProvince() {
  203. return province;
  204. }
  205. public void setProvince(Integer province) {
  206. this.province = province;
  207. }
  208. public String getProjectId() {
  209. return projectId;
  210. }
  211. public void setProjectId(String projectId) {
  212. this.projectId = projectId;
  213. }
  214. public Integer getScreen() {
  215. return screen;
  216. }
  217. public void setScreen(Integer screen) {
  218. this.screen = screen;
  219. }
  220. }