OutProjectStatisticsCommon.java 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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 OutProjectStatisticsCommon 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 = "项目金额",scale = 6)
  38. private BigDecimal commodityPrice;
  39. @Excel(name = "特别说明")
  40. private String specialComment;
  41. @Excel(name = "项目说明")
  42. private String taskComment;
  43. @Excel(name = "订单说明")
  44. private String orderRemarks;
  45. private Integer setUpStatus;
  46. private String setUpTime;
  47. private Integer spotCheckStatus;
  48. private String contactMobile;
  49. private String legalPersonTel;
  50. private String certificateNumber;
  51. private String declarationBatch;
  52. private String licenceTime;
  53. private Integer ifMaterial;
  54. private Integer urgentDay;
  55. private BigDecimal costAmount;
  56. private BigDecimal profit;
  57. private Integer highTechstatus;
  58. private Integer rejectCount;
  59. private String patentNo;
  60. private String patentName;
  61. private String acceptTime;
  62. private Integer certificatesCount;
  63. @Override
  64. public String getServiceType() {
  65. return serviceType;
  66. }
  67. @Override
  68. public void setServiceType(String serviceType) {
  69. this.serviceType = serviceType;
  70. }
  71. @Override
  72. public String getServiceProject() {
  73. return serviceProject;
  74. }
  75. @Override
  76. public void setServiceProject(String serviceProject) {
  77. this.serviceProject = serviceProject;
  78. }
  79. public String getOrderRemarks() {
  80. return orderRemarks;
  81. }
  82. public void setOrderRemarks(String orderRemarks) {
  83. this.orderRemarks = orderRemarks;
  84. }
  85. public Integer getSetUpStatus() {
  86. return setUpStatus;
  87. }
  88. public void setSetUpStatus(Integer setUpStatus) {
  89. this.setUpStatus = setUpStatus;
  90. }
  91. public String getSetUpTime() {
  92. return setUpTime;
  93. }
  94. public void setSetUpTime(String setUpTime) {
  95. this.setUpTime = setUpTime;
  96. }
  97. public Integer getSpotCheckStatus() {
  98. return spotCheckStatus;
  99. }
  100. public void setSpotCheckStatus(Integer spotCheckStatus) {
  101. this.spotCheckStatus = spotCheckStatus;
  102. }
  103. public String getContactMobile() {
  104. return contactMobile;
  105. }
  106. public void setContactMobile(String contactMobile) {
  107. this.contactMobile = contactMobile;
  108. }
  109. public String getLegalPersonTel() {
  110. return legalPersonTel;
  111. }
  112. public void setLegalPersonTel(String legalPersonTel) {
  113. this.legalPersonTel = legalPersonTel;
  114. }
  115. public String getCertificateNumber() {
  116. return certificateNumber;
  117. }
  118. public void setCertificateNumber(String certificateNumber) {
  119. this.certificateNumber = certificateNumber;
  120. }
  121. public String getDeclarationBatch() {
  122. return declarationBatch;
  123. }
  124. public void setDeclarationBatch(String declarationBatch) {
  125. this.declarationBatch = declarationBatch;
  126. }
  127. public Integer getCommodityQuantity() {
  128. return commodityQuantity;
  129. }
  130. public void setCommodityQuantity(Integer commodityQuantity) {
  131. this.commodityQuantity = commodityQuantity;
  132. }
  133. public BigDecimal getCommodityPrice() {
  134. return commodityPrice;
  135. }
  136. public void setCommodityPrice(BigDecimal commodityPrice) {
  137. this.commodityPrice = commodityPrice;
  138. }
  139. public String getDistributionTime() {
  140. return distributionTime;
  141. }
  142. public void setDistributionTime(String distributionTime) {
  143. this.distributionTime = distributionTime;
  144. }
  145. public String getProvince() {
  146. return province;
  147. }
  148. public void setProvince(String province) {
  149. this.province = province;
  150. }
  151. public String getDepName() {
  152. return depName;
  153. }
  154. public void setDepName(String depName) {
  155. this.depName = depName;
  156. }
  157. public String getSalesmanName() {
  158. return salesmanName;
  159. }
  160. public void setSalesmanName(String salesmanName) {
  161. this.salesmanName = salesmanName;
  162. }
  163. public String getContractNo() {
  164. return contractNo;
  165. }
  166. public void setContractNo(String contractNo) {
  167. this.contractNo = contractNo;
  168. }
  169. public String getOrderNo() {
  170. return orderNo;
  171. }
  172. public void setOrderNo(String orderNo) {
  173. this.orderNo = orderNo;
  174. }
  175. public String getUserName() {
  176. return userName;
  177. }
  178. public void setUserName(String userName) {
  179. this.userName = userName;
  180. }
  181. public String getCname() {
  182. return cname;
  183. }
  184. public void setCname(String cname) {
  185. this.cname = cname;
  186. }
  187. public String getPname() {
  188. return pname;
  189. }
  190. public void setPname(String pname) {
  191. this.pname = pname;
  192. }
  193. public String getTechName() {
  194. return techName;
  195. }
  196. public void setTechName(String techName) {
  197. this.techName = techName;
  198. }
  199. public String getTechDepName() {
  200. return techDepName;
  201. }
  202. public void setTechDepName(String techDepName) {
  203. this.techDepName = techDepName;
  204. }
  205. public Integer getProjectStatus() {
  206. return projectStatus;
  207. }
  208. public void setProjectStatus(Integer projectStatus) {
  209. this.projectStatus = projectStatus;
  210. }
  211. public String getLicenceTime() {
  212. return licenceTime;
  213. }
  214. public void setLicenceTime(String licenceTime) {
  215. this.licenceTime = licenceTime;
  216. }
  217. public String getTaskComment() {
  218. return taskComment;
  219. }
  220. public void setTaskComment(String taskComment) {
  221. this.taskComment = taskComment;
  222. }
  223. public Integer getCertificatesCount() {
  224. return certificatesCount;
  225. }
  226. public void setCertificatesCount(Integer certificatesCount) {
  227. this.certificatesCount = certificatesCount;
  228. }
  229. public Integer getUrgentDay() {
  230. return urgentDay;
  231. }
  232. public void setUrgentDay(Integer urgentDay) {
  233. this.urgentDay = urgentDay;
  234. }
  235. public Integer getIfMaterial() {
  236. return ifMaterial;
  237. }
  238. public void setIfMaterial(Integer ifMaterial) {
  239. this.ifMaterial = ifMaterial;
  240. }
  241. public BigDecimal getCostAmount() {
  242. return costAmount;
  243. }
  244. public void setCostAmount(BigDecimal costAmount) {
  245. this.costAmount = costAmount;
  246. }
  247. public BigDecimal getProfit() {
  248. if (profit==null&&commodityPrice!=null&&costAmount!=null) {
  249. return commodityPrice.subtract(costAmount);
  250. }
  251. return profit;
  252. }
  253. public void setProfit(BigDecimal profit) {
  254. this.profit = profit;
  255. }
  256. public Integer getRejectCount() {
  257. return rejectCount;
  258. }
  259. public void setRejectCount(Integer rejectCount) {
  260. this.rejectCount = rejectCount;
  261. }
  262. public String getPatentName() {
  263. return patentName;
  264. }
  265. public void setPatentName(String patentName) {
  266. this.patentName = patentName;
  267. }
  268. public String getAcceptTime() {
  269. return acceptTime;
  270. }
  271. public void setAcceptTime(String acceptTime) {
  272. this.acceptTime = acceptTime;
  273. }
  274. public Integer getHighTechstatus() {
  275. return highTechstatus;
  276. }
  277. public void setHighTechstatus(Integer highTechstatus) {
  278. this.highTechstatus = highTechstatus;
  279. }
  280. public Integer getId() {
  281. return id;
  282. }
  283. public void setId(Integer id) {
  284. this.id = id;
  285. }
  286. public String getSpecialComment() {
  287. return specialComment;
  288. }
  289. public void setSpecialComment(String specialComment) {
  290. this.specialComment = specialComment;
  291. }
  292. public String getPatentNo() {
  293. return patentNo;
  294. }
  295. public void setPatentNo(String patentNo) {
  296. this.patentNo = patentNo;
  297. }
  298. }