OutOrderProject.java 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. package com.goafanti.order.bo;
  2. import com.goafanti.common.utils.excel.Excel;
  3. import java.math.BigDecimal;
  4. public class OutOrderProject {
  5. /**
  6. * 订单编号
  7. */
  8. private String orderNo;
  9. /**
  10. * 销售类型 0=电话新开发,1=电话自带资源,2=网络,3=渠道,4=转介绍,5=其他,6=高新复购,7=其他复购,8=私有/渠道
  11. */
  12. @Excel(name = "销售类型",readConverterExp = "0=电话新开发,1=电话自带资源,2=网络,3=渠道,4=转介绍,5=其他,6=高新复购,7=其他复购,8=私有/渠道")
  13. private Integer salesType;
  14. /**
  15. * 订单类型(服务类型)
  16. */
  17. @Excel(name = "订单类型")
  18. private String serviceType;
  19. /**
  20. * 清算状态(结算状态) 0-首付待付请,1-尾款待付清,2-已付请,3-部分退款,4-全部退款
  21. */
  22. @Excel(name = "结算状态",readConverterExp = "0=首付待付请,1=尾款待付清,2=已付请,3=部分退款,4=全部退款")
  23. private Integer liquidationStatus;
  24. /**
  25. * 催款节点统计
  26. */
  27. @Excel(name = "催款节点")
  28. private String dunNodeContent;
  29. /**
  30. * 是否会员
  31. */
  32. @Excel(name = "是否会员",readConverterExp = "0=否,1=是",width = 10)
  33. private Integer projectType;
  34. /**
  35. * 大客户
  36. */
  37. @Excel(name = "大客户",readConverterExp = "0=否,1=是",width = 10)
  38. private Integer bigCustomer;
  39. /**
  40. * 是否特批 0-非特批 ,1-负责人审核,2-负责人通过,3-负责人驳回 4董事长待审核 5董事长通过 6董事长驳回
  41. */
  42. @Excel(name = "是否特批",readConverterExp = "0=非特批,1=特批,2=特批,3=特批,4=特批,5=特批,6=特批",width = 10)
  43. private String approval;
  44. /**
  45. * 签单时间
  46. */
  47. @Excel(name = "签单时间",width = 10)
  48. private String signTime;
  49. /**
  50. * 派单时间
  51. */
  52. @Excel(name = "派单时间")
  53. private String createTime;
  54. /**
  55. * 公司名称
  56. */
  57. @Excel(name = "公司名称")
  58. private String buyerName;
  59. /**
  60. * 合同编号
  61. */
  62. @Excel(name = "合同编号")
  63. private String contractNo;
  64. /**
  65. * 合同类型
  66. */
  67. @Excel(name = "合同类型")
  68. private String htlx;
  69. /**
  70. * 省份
  71. */
  72. @Excel(name = "省份")
  73. private String province;
  74. /**
  75. * 派单部门
  76. */
  77. @Excel(name = "派单部门")
  78. private String depName;
  79. /**
  80. * 总金额
  81. */
  82. @Excel(name = "签单金额",scale = 6,width = 10)
  83. private BigDecimal totalAmount;
  84. /**
  85. * 合同收款比例
  86. */
  87. @Excel(name = "合同收款比例",width = 10)
  88. private String contractAmountProportion;
  89. /**
  90. * 应收款
  91. */
  92. @Excel(name = "应收款",scale = 6,width = 10)
  93. private BigDecimal orderReceivables;
  94. /**
  95. * 已收款
  96. */
  97. @Excel(name = "已收款",scale = 6,width = 10)
  98. private BigDecimal settlementAmount;
  99. /**
  100. * 欠款
  101. */
  102. @Excel(name = "欠款",scale = 6,width = 10)
  103. private BigDecimal arrearsAmount;
  104. /**
  105. * 已报销
  106. */
  107. @Excel(name = "已报销",width = 10)
  108. private BigDecimal expenseAmount;
  109. /**
  110. * 应公出
  111. */
  112. @Excel(name = "应公出")
  113. private String shouldPublic;
  114. /**
  115. * 已公出
  116. */
  117. @Excel(name = "已公出")
  118. private String alreadyPublic;
  119. /**
  120. * 超出
  121. */
  122. @Excel(name = "超出")
  123. private String exceedPublic;
  124. /**
  125. * 成本金额
  126. */
  127. @Excel(name = "总成本",scale = 6,width = 10)
  128. private BigDecimal costAmount;
  129. /**
  130. * 成本实付
  131. */
  132. @Excel(name = "实付成本",scale = 6,width = 10)
  133. private BigDecimal paymentAmount;
  134. /**
  135. * 开票金额
  136. */
  137. @Excel(name = "已开票金额",scale = 6,width = 10)
  138. private BigDecimal invicueAmount;
  139. /**
  140. * 退款金额
  141. */
  142. @Excel(name = "退款金额",scale = 6,width = 10)
  143. private BigDecimal refundAmount;
  144. /**
  145. * 财务负责人
  146. */
  147. @Excel(name = "财务负责人")
  148. private String financeName;
  149. /**
  150. * 营销负责人
  151. */
  152. @Excel(name = "营销负责人")
  153. private String salesmanName;
  154. /**
  155. * 核算比例
  156. */
  157. @Excel(name = "核算比例")
  158. private String hsbl;
  159. /**
  160. * 订单情况 ,readConverterExp = "0=待签单,1=签单待审,2=签单审核通过,3=签单审核拒绝,4=已结项,5=已驳回,6=已退单"
  161. */
  162. @Excel(name = "订单情况")
  163. private String orderStatus;
  164. /**
  165. * 变更情况
  166. */
  167. @Excel(name = "变更情况")
  168. private String changeType;
  169. /**
  170. * 退单退款
  171. */
  172. @Excel(name = "退单退款")
  173. private String refundType;
  174. /**
  175. * 是否重报
  176. */
  177. @Excel(name = "是否重报")
  178. private String restatementType;
  179. /**
  180. * 是否科技项目(订单类型) 0认证项目 1科技项目 2 两化融化管理体系认证项目
  181. */
  182. @Excel(name = "是否科技项目")
  183. private String orderType;
  184. /**
  185. * 项目名称
  186. */
  187. @Excel(name = "项目名称")
  188. private String commodityName;
  189. /**
  190. * 本次年份
  191. */
  192. @Excel(name = "本次年份")
  193. private String serviceYear;
  194. /**
  195. * 服务年限
  196. */
  197. @Excel(name = "服务年限")
  198. private String serviceLife;
  199. /**
  200. * 服务年份
  201. */
  202. @Excel(name = "服务年份")
  203. private Integer yearSum;
  204. /**
  205. * 项目转入时间
  206. */
  207. @Excel(name = "项目转入时间")
  208. private String taskDistributionTime;
  209. /**
  210. * 项目数
  211. */
  212. @Excel(name = "项目数")
  213. private String commodityQuantity;
  214. /**
  215. * 项目成本
  216. */
  217. @Excel(name = "项目成本")
  218. private String projectCostAmount;
  219. /**
  220. * 项目状态
  221. */
  222. @Excel(name = "项目状态")
  223. private String projectStatus;
  224. /**
  225. * 项目启动时间
  226. */
  227. @Excel(name = "项目启动时间")
  228. private String taskStartTime;
  229. /**
  230. * 项目完成时间
  231. */
  232. @Excel(name = "项目完成时间")
  233. private String taskEndTime;
  234. /**
  235. * 技术组
  236. */
  237. @Excel(name = "技术组")
  238. private String jsz;
  239. /**
  240. * 项目负责人
  241. */
  242. @Excel(name = "项目负责人")
  243. private String receiverName;
  244. /**
  245. * 满意度
  246. */
  247. @Excel(name = "满意度",readConverterExp = "0=非常满意,1=满意,2=一般,3=不满意")
  248. private Integer satisfactionDegree;
  249. /**
  250. * 项目备注
  251. */
  252. @Excel(name = "项目备注")
  253. private String taskComment;
  254. public String getOrderNo() {
  255. return orderNo;
  256. }
  257. public void setOrderNo(String orderNo) {
  258. this.orderNo = orderNo;
  259. }
  260. public Integer getSalesType() {
  261. return salesType;
  262. }
  263. public void setSalesType(Integer salesType) {
  264. this.salesType = salesType;
  265. }
  266. public String getServiceType() {
  267. return serviceType;
  268. }
  269. public void setServiceType(String serviceType) {
  270. this.serviceType = serviceType;
  271. }
  272. public Integer getLiquidationStatus() {
  273. return liquidationStatus;
  274. }
  275. public void setLiquidationStatus(Integer liquidationStatus) {
  276. this.liquidationStatus = liquidationStatus;
  277. }
  278. public String getDunNodeContent() {
  279. return dunNodeContent;
  280. }
  281. public void setDunNodeContent(String dunNodeContent) {
  282. this.dunNodeContent = dunNodeContent;
  283. }
  284. public Integer getProjectType() {
  285. return projectType;
  286. }
  287. public void setProjectType(Integer projectType) {
  288. this.projectType = projectType;
  289. }
  290. public Integer getBigCustomer() {
  291. return bigCustomer;
  292. }
  293. public void setBigCustomer(Integer bigCustomer) {
  294. this.bigCustomer = bigCustomer;
  295. }
  296. public String getApproval() {
  297. return approval;
  298. }
  299. public void setApproval(String approval) {
  300. this.approval = approval;
  301. }
  302. public String getSignTime() {
  303. return signTime;
  304. }
  305. public void setSignTime(String signTime) {
  306. this.signTime = signTime;
  307. }
  308. public String getCreateTime() {
  309. return createTime;
  310. }
  311. public void setCreateTime(String createTime) {
  312. this.createTime = createTime;
  313. }
  314. public String getBuyerName() {
  315. return buyerName;
  316. }
  317. public void setBuyerName(String buyerName) {
  318. this.buyerName = buyerName;
  319. }
  320. public String getContractNo() {
  321. return contractNo;
  322. }
  323. public void setContractNo(String contractNo) {
  324. this.contractNo = contractNo;
  325. }
  326. public String getHtlx() {
  327. return htlx;
  328. }
  329. public void setHtlx(String htlx) {
  330. this.htlx = htlx;
  331. }
  332. public String getProvince() {
  333. return province;
  334. }
  335. public void setProvince(String province) {
  336. this.province = province;
  337. }
  338. public String getDepName() {
  339. return depName;
  340. }
  341. public void setDepName(String depName) {
  342. this.depName = depName;
  343. }
  344. public BigDecimal getTotalAmount() {
  345. return totalAmount;
  346. }
  347. public void setTotalAmount(BigDecimal totalAmount) {
  348. this.totalAmount = totalAmount;
  349. }
  350. public String getContractAmountProportion() {
  351. return contractAmountProportion;
  352. }
  353. public void setContractAmountProportion(String contractAmountProportion) {
  354. this.contractAmountProportion = contractAmountProportion;
  355. }
  356. public BigDecimal getOrderReceivables() {
  357. return orderReceivables;
  358. }
  359. public void setOrderReceivables(BigDecimal orderReceivables) {
  360. this.orderReceivables = orderReceivables;
  361. }
  362. public BigDecimal getSettlementAmount() {
  363. return settlementAmount;
  364. }
  365. public void setSettlementAmount(BigDecimal settlementAmount) {
  366. this.settlementAmount = settlementAmount;
  367. }
  368. public BigDecimal getArrearsAmount() {
  369. return arrearsAmount;
  370. }
  371. public void setArrearsAmount(BigDecimal arrearsAmount) {
  372. this.arrearsAmount = arrearsAmount;
  373. }
  374. public BigDecimal getExpenseAmount() {
  375. return expenseAmount;
  376. }
  377. public void setExpenseAmount(BigDecimal expenseAmount) {
  378. this.expenseAmount = expenseAmount;
  379. }
  380. public String getShouldPublic() {
  381. return shouldPublic;
  382. }
  383. public void setShouldPublic(String shouldPublic) {
  384. this.shouldPublic = shouldPublic;
  385. }
  386. public String getAlreadyPublic() {
  387. return alreadyPublic;
  388. }
  389. public void setAlreadyPublic(String alreadyPublic) {
  390. this.alreadyPublic = alreadyPublic;
  391. }
  392. public String getExceedPublic() {
  393. return exceedPublic;
  394. }
  395. public void setExceedPublic(String exceedPublic) {
  396. this.exceedPublic = exceedPublic;
  397. }
  398. public BigDecimal getCostAmount() {
  399. return costAmount;
  400. }
  401. public void setCostAmount(BigDecimal costAmount) {
  402. this.costAmount = costAmount;
  403. }
  404. public BigDecimal getPaymentAmount() {
  405. return paymentAmount;
  406. }
  407. public void setPaymentAmount(BigDecimal paymentAmount) {
  408. this.paymentAmount = paymentAmount;
  409. }
  410. public BigDecimal getInvicueAmount() {
  411. return invicueAmount;
  412. }
  413. public void setInvicueAmount(BigDecimal invicueAmount) {
  414. this.invicueAmount = invicueAmount;
  415. }
  416. public BigDecimal getRefundAmount() {
  417. return refundAmount;
  418. }
  419. public void setRefundAmount(BigDecimal refundAmount) {
  420. this.refundAmount = refundAmount;
  421. }
  422. public String getFinanceName() {
  423. return financeName;
  424. }
  425. public void setFinanceName(String financeName) {
  426. this.financeName = financeName;
  427. }
  428. public String getSalesmanName() {
  429. return salesmanName;
  430. }
  431. public void setSalesmanName(String salesmanName) {
  432. this.salesmanName = salesmanName;
  433. }
  434. public String getCommodityName() {
  435. return commodityName;
  436. }
  437. public void setCommodityName(String commodityName) {
  438. this.commodityName = commodityName;
  439. }
  440. public String getServiceYear() {
  441. return serviceYear;
  442. }
  443. public void setServiceYear(String serviceYear) {
  444. this.serviceYear = serviceYear;
  445. }
  446. public String getServiceLife() {
  447. return serviceLife;
  448. }
  449. public void setServiceLife(String serviceLife) {
  450. this.serviceLife = serviceLife;
  451. }
  452. public Integer getYearSum() {
  453. return yearSum;
  454. }
  455. public void setYearSum(Integer yearSum) {
  456. this.yearSum = yearSum;
  457. }
  458. public String getTaskDistributionTime() {
  459. return taskDistributionTime;
  460. }
  461. public void setTaskDistributionTime(String taskDistributionTime) {
  462. this.taskDistributionTime = taskDistributionTime;
  463. }
  464. public String getOrderType() {
  465. return orderType;
  466. }
  467. public void setOrderType(String orderType) {
  468. this.orderType = orderType;
  469. }
  470. public String getCommodityQuantity() {
  471. return commodityQuantity;
  472. }
  473. public void setCommodityQuantity(String commodityQuantity) {
  474. this.commodityQuantity = commodityQuantity;
  475. }
  476. public String getProjectCostAmount() {
  477. return projectCostAmount;
  478. }
  479. public void setProjectCostAmount(String projectCostAmount) {
  480. this.projectCostAmount = projectCostAmount;
  481. }
  482. public String getProjectStatus() {
  483. return projectStatus;
  484. }
  485. public void setProjectStatus(String projectStatus) {
  486. this.projectStatus = projectStatus;
  487. }
  488. public String getTaskStartTime() {
  489. return taskStartTime;
  490. }
  491. public void setTaskStartTime(String taskStartTime) {
  492. this.taskStartTime = taskStartTime;
  493. }
  494. public String getTaskEndTime() {
  495. return taskEndTime;
  496. }
  497. public void setTaskEndTime(String taskEndTime) {
  498. this.taskEndTime = taskEndTime;
  499. }
  500. public String getJsz() {
  501. return jsz;
  502. }
  503. public void setJsz(String jsz) {
  504. this.jsz = jsz;
  505. }
  506. public String getReceiverName() {
  507. return receiverName;
  508. }
  509. public void setReceiverName(String receiverName) {
  510. this.receiverName = receiverName;
  511. }
  512. public Integer getSatisfactionDegree() {
  513. return satisfactionDegree;
  514. }
  515. public void setSatisfactionDegree(Integer satisfactionDegree) {
  516. this.satisfactionDegree = satisfactionDegree;
  517. }
  518. public String getTaskComment() {
  519. return taskComment;
  520. }
  521. public void setTaskComment(String taskComment) {
  522. this.taskComment = taskComment;
  523. }
  524. public String getHsbl() {
  525. return hsbl;
  526. }
  527. public void setHsbl(String hsbl) {
  528. this.hsbl = hsbl;
  529. }
  530. public String getOrderStatus() {
  531. return orderStatus;
  532. }
  533. public void setOrderStatus(String orderStatus) {
  534. this.orderStatus = orderStatus;
  535. }
  536. public String getRestatementType() {
  537. return restatementType;
  538. }
  539. public void setRestatementType(String restatementType) {
  540. this.restatementType = restatementType;
  541. }
  542. public String getChangeType() {
  543. return changeType;
  544. }
  545. public void setChangeType(String changeType) {
  546. this.changeType = changeType;
  547. }
  548. public String getRefundType() {
  549. return refundType;
  550. }
  551. public void setRefundType(String refundType) {
  552. this.refundType = refundType;
  553. }
  554. }