OutProjectStatisticsPatent.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. package com.goafanti.order.bo.outStatistics;
  2. import com.goafanti.common.utils.excel.Excel;
  3. import com.goafanti.order.bo.OutProjectStatistics;
  4. import java.math.BigDecimal;
  5. public class OutProjectStatisticsPatent extends OutProjectStatistics {
  6. private Integer id;
  7. @Excel(name = "派单时间")
  8. private String distributionTime;
  9. @Excel(name = "派单省份")
  10. private String province;
  11. @Excel(name = "订单部门")
  12. private String depName;
  13. @Excel(name = "营销员")
  14. private String salesmanName;
  15. @Excel(name = "合同编号")
  16. private String contractNo;
  17. @Excel(name = "订单编号")
  18. private String orderNo;
  19. @Excel(name = "客户名称")
  20. private String userName;
  21. @Excel(name = "项目类型")
  22. private String cname;
  23. @Excel(name = "项目名称")
  24. private String pname;
  25. @Excel(name = "数量")
  26. private Integer commodityQuantity;
  27. @Excel(name = "服务类型")
  28. private String serviceType;
  29. @Excel(name = "服务项目")
  30. private String serviceProject;
  31. @Excel(name = "负责部门")
  32. private String techDepName;
  33. @Excel(name = "咨询师/咨询师经理")
  34. private String techName;
  35. @Excel(name = "项目状态" ,enumsName = "com.goafanti.order.enums.NewProjectStatus")
  36. private Integer projectStatus;
  37. @Excel(name = "是否高新",readConverterExp = "0=否,1=是")
  38. private Integer highTechstatus;
  39. @Excel(name = "项目数/下证数")
  40. private String quantityAndcount;
  41. @Excel(name = "驳回数")
  42. private Integer rejectCount;
  43. @Excel(name = "专利号")
  44. private String patentNo;
  45. @Excel(name = "专利名称")
  46. private String patentName;
  47. @Excel(name = "受理时间")
  48. private String acceptTime;
  49. @Excel(name = "成本",scale = 6)
  50. private BigDecimal costAmount;
  51. @Excel(name = "利润",scale = 6)
  52. private BigDecimal profit;
  53. @Excel(name = "项目金额",scale = 6)
  54. private BigDecimal commodityPrice;
  55. @Excel(name = "特别说明")
  56. private String specialComment;
  57. @Excel(name = "项目说明")
  58. private String taskComment;
  59. @Excel(name = "订单说明")
  60. private String orderRemarks;
  61. @Excel(name = "满意度调查表",readConverterExp = "0=未发送,1=已发送-未回收,2=已回收,3=其他")
  62. private Integer formRetrieve;
  63. @Excel(name = "满意度",readConverterExp = "0=非常满意,1=满意,2=一般,3=不满意")
  64. private Integer satisfactionDegree;
  65. @Excel(name = "特批",readConverterExp = "0=非特批,1=特批待审核,2=特批通过,3=特批驳回,4=董事长特批待审核,5=董事长特批通过,6董事长特批驳回")
  66. private Integer approval;
  67. @Excel(name="特批类型")
  68. private String type;
  69. private String typeExplain;
  70. private Integer setUpStatus;
  71. private String setUpTime;
  72. private Integer spotCheckStatus;
  73. private String contactMobile;
  74. private String legalPersonTel;
  75. private String certificateNumber;
  76. private String declarationBatch;
  77. private String licenceTime;
  78. private Integer ifMaterial;
  79. private Integer urgentDay;
  80. private Integer certificatesCount;
  81. @Override
  82. public Integer getApproval() {
  83. return approval;
  84. }
  85. @Override
  86. public void setApproval(Integer approval) {
  87. this.approval = approval;
  88. }
  89. @Override
  90. public String getType() {
  91. return type;
  92. }
  93. @Override
  94. public void setType(String type) {
  95. this.type = type;
  96. }
  97. @Override
  98. public String getTypeExplain() {
  99. return typeExplain;
  100. }
  101. @Override
  102. public void setTypeExplain(String typeExplain) {
  103. this.typeExplain = typeExplain;
  104. }
  105. @Override
  106. public Integer getFormRetrieve() {
  107. return formRetrieve;
  108. }
  109. @Override
  110. public void setFormRetrieve(Integer formRetrieve) {
  111. this.formRetrieve = formRetrieve;
  112. }
  113. @Override
  114. public Integer getSatisfactionDegree() {
  115. return satisfactionDegree;
  116. }
  117. @Override
  118. public void setSatisfactionDegree(Integer satisfactionDegree) {
  119. this.satisfactionDegree = satisfactionDegree;
  120. }
  121. @Override
  122. public String getServiceType() {
  123. return serviceType;
  124. }
  125. @Override
  126. public void setServiceType(String serviceType) {
  127. this.serviceType = serviceType;
  128. }
  129. @Override
  130. public String getServiceProject() {
  131. return serviceProject;
  132. }
  133. @Override
  134. public void setServiceProject(String serviceProject) {
  135. this.serviceProject = serviceProject;
  136. }
  137. public String getQuantityAndcount() {
  138. return quantityAndcount;
  139. }
  140. public void setQuantityAndcount(String quantityAndcount) {
  141. this.quantityAndcount = quantityAndcount;
  142. }
  143. public String getOrderRemarks() {
  144. return orderRemarks;
  145. }
  146. public void setOrderRemarks(String orderRemarks) {
  147. this.orderRemarks = orderRemarks;
  148. }
  149. public Integer getSetUpStatus() {
  150. return setUpStatus;
  151. }
  152. public void setSetUpStatus(Integer setUpStatus) {
  153. this.setUpStatus = setUpStatus;
  154. }
  155. public String getSetUpTime() {
  156. return setUpTime;
  157. }
  158. public void setSetUpTime(String setUpTime) {
  159. this.setUpTime = setUpTime;
  160. }
  161. public Integer getSpotCheckStatus() {
  162. return spotCheckStatus;
  163. }
  164. public void setSpotCheckStatus(Integer spotCheckStatus) {
  165. this.spotCheckStatus = spotCheckStatus;
  166. }
  167. public String getContactMobile() {
  168. return contactMobile;
  169. }
  170. public void setContactMobile(String contactMobile) {
  171. this.contactMobile = contactMobile;
  172. }
  173. public String getLegalPersonTel() {
  174. return legalPersonTel;
  175. }
  176. public void setLegalPersonTel(String legalPersonTel) {
  177. this.legalPersonTel = legalPersonTel;
  178. }
  179. public String getCertificateNumber() {
  180. return certificateNumber;
  181. }
  182. public void setCertificateNumber(String certificateNumber) {
  183. this.certificateNumber = certificateNumber;
  184. }
  185. public String getDeclarationBatch() {
  186. return declarationBatch;
  187. }
  188. public void setDeclarationBatch(String declarationBatch) {
  189. this.declarationBatch = declarationBatch;
  190. }
  191. public Integer getCommodityQuantity() {
  192. return commodityQuantity;
  193. }
  194. public void setCommodityQuantity(Integer commodityQuantity) {
  195. this.commodityQuantity = commodityQuantity;
  196. }
  197. public BigDecimal getCommodityPrice() {
  198. return commodityPrice;
  199. }
  200. public void setCommodityPrice(BigDecimal commodityPrice) {
  201. this.commodityPrice = commodityPrice;
  202. }
  203. public String getDistributionTime() {
  204. return distributionTime;
  205. }
  206. public void setDistributionTime(String distributionTime) {
  207. this.distributionTime = distributionTime;
  208. }
  209. public String getProvince() {
  210. return province;
  211. }
  212. public void setProvince(String province) {
  213. this.province = province;
  214. }
  215. public String getDepName() {
  216. return depName;
  217. }
  218. public void setDepName(String depName) {
  219. this.depName = depName;
  220. }
  221. public String getSalesmanName() {
  222. return salesmanName;
  223. }
  224. public void setSalesmanName(String salesmanName) {
  225. this.salesmanName = salesmanName;
  226. }
  227. public String getContractNo() {
  228. return contractNo;
  229. }
  230. public void setContractNo(String contractNo) {
  231. this.contractNo = contractNo;
  232. }
  233. public String getOrderNo() {
  234. return orderNo;
  235. }
  236. public void setOrderNo(String orderNo) {
  237. this.orderNo = orderNo;
  238. }
  239. public String getUserName() {
  240. return userName;
  241. }
  242. public void setUserName(String userName) {
  243. this.userName = userName;
  244. }
  245. public String getCname() {
  246. return cname;
  247. }
  248. public void setCname(String cname) {
  249. this.cname = cname;
  250. }
  251. public String getPname() {
  252. return pname;
  253. }
  254. public void setPname(String pname) {
  255. this.pname = pname;
  256. }
  257. public String getTechName() {
  258. return techName;
  259. }
  260. public void setTechName(String techName) {
  261. this.techName = techName;
  262. }
  263. public String getTechDepName() {
  264. return techDepName;
  265. }
  266. public void setTechDepName(String techDepName) {
  267. this.techDepName = techDepName;
  268. }
  269. public Integer getProjectStatus() {
  270. return projectStatus;
  271. }
  272. public void setProjectStatus(Integer projectStatus) {
  273. this.projectStatus = projectStatus;
  274. }
  275. public String getLicenceTime() {
  276. return licenceTime;
  277. }
  278. public void setLicenceTime(String licenceTime) {
  279. this.licenceTime = licenceTime;
  280. }
  281. public String getTaskComment() {
  282. return taskComment;
  283. }
  284. public void setTaskComment(String taskComment) {
  285. this.taskComment = taskComment;
  286. }
  287. public Integer getCertificatesCount() {
  288. return certificatesCount;
  289. }
  290. public void setCertificatesCount(Integer certificatesCount) {
  291. this.certificatesCount = certificatesCount;
  292. }
  293. public Integer getUrgentDay() {
  294. return urgentDay;
  295. }
  296. public void setUrgentDay(Integer urgentDay) {
  297. this.urgentDay = urgentDay;
  298. }
  299. public Integer getIfMaterial() {
  300. return ifMaterial;
  301. }
  302. public void setIfMaterial(Integer ifMaterial) {
  303. this.ifMaterial = ifMaterial;
  304. }
  305. public BigDecimal getCostAmount() {
  306. return costAmount;
  307. }
  308. public void setCostAmount(BigDecimal costAmount) {
  309. this.costAmount = costAmount;
  310. }
  311. public BigDecimal getProfit() {
  312. if (profit==null&&commodityPrice!=null&&costAmount!=null) {
  313. return commodityPrice.subtract(costAmount);
  314. }
  315. return profit;
  316. }
  317. public void setProfit(BigDecimal profit) {
  318. this.profit = profit;
  319. }
  320. public Integer getRejectCount() {
  321. return rejectCount;
  322. }
  323. public void setRejectCount(Integer rejectCount) {
  324. this.rejectCount = rejectCount;
  325. }
  326. public String getPatentName() {
  327. return patentName;
  328. }
  329. public void setPatentName(String patentName) {
  330. this.patentName = patentName;
  331. }
  332. public String getAcceptTime() {
  333. return acceptTime;
  334. }
  335. public void setAcceptTime(String acceptTime) {
  336. this.acceptTime = acceptTime;
  337. }
  338. public Integer getHighTechstatus() {
  339. return highTechstatus;
  340. }
  341. public void setHighTechstatus(Integer highTechstatus) {
  342. this.highTechstatus = highTechstatus;
  343. }
  344. public Integer getId() {
  345. return id;
  346. }
  347. public void setId(Integer id) {
  348. this.id = id;
  349. }
  350. public String getSpecialComment() {
  351. return specialComment;
  352. }
  353. public void setSpecialComment(String specialComment) {
  354. this.specialComment = specialComment;
  355. }
  356. public String getPatentNo() {
  357. return patentNo;
  358. }
  359. public void setPatentNo(String patentNo) {
  360. this.patentNo = patentNo;
  361. }
  362. }