OutProjectStatisticsCommon.java 8.2 KB

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