TOrderNew.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * t_order_new
  7. * @author
  8. */
  9. public class TOrderNew implements Serializable {
  10. /**
  11. * 订单编号
  12. */
  13. private String orderNo;
  14. /**
  15. * 订单类型 0认证项目 1科技项目 2 两化融化管理体系认证项目
  16. */
  17. private Integer orderType;
  18. /**
  19. * 创建人
  20. */
  21. private String creater;
  22. /**
  23. * 创建时间
  24. */
  25. private Date createTime;
  26. /**
  27. * 更新时间
  28. */
  29. private Date updateTime;
  30. /**
  31. * 买方id
  32. */
  33. private String buyerId;
  34. /**
  35. * 首付金额
  36. */
  37. private BigDecimal firstAmount;
  38. /**
  39. * 总金额
  40. */
  41. private BigDecimal totalAmount;
  42. /**
  43. * 已收金额
  44. */
  45. private BigDecimal settlementAmount;
  46. /**
  47. * 退款金额
  48. */
  49. private BigDecimal refundAmount;
  50. /**
  51. * 订单状态 0-待签单,1-签单待审,2-签单审核通过,3-签单审核拒绝,4-已结项,5-已驳回,6-已退单
  52. */
  53. private Integer orderStatus;
  54. /**
  55. * 清算状态 0-首付待付请,1-尾款待付清,2-已付请,3-部分退款,4-全部退款
  56. */
  57. private Integer liquidationStatus;
  58. /**
  59. * 流程状态 0-已派营销员,1-已派营销员管理员,2-已派财务管理员,3-已派财务专员,4-已派咨询师管理员,5-已部分派咨询师经理,6-已部全部派咨询师经理
  60. */
  61. private Integer processStatus;
  62. /**
  63. * 项目状态 0-项目待提交 1-项目已提交,2-项目评审,3-项目立项,4-项目公示,5-项目抽查,6-项目备案,7-项目下证,8-项目验收,9-项目拨款
  64. */
  65. private Integer projectStatus;
  66. /**
  67. * 特批状态 0-非特批 ,1-待审核,2-通过,3-驳回
  68. */
  69. private Integer approval;
  70. /**
  71. * 订单备注
  72. */
  73. private String orderRemarks;
  74. /**
  75. * 0正常 1作废 2锁定 3变更中
  76. */
  77. private Integer deleteSign;
  78. /**
  79. * 营销员id
  80. */
  81. private String salesmanId;
  82. /**
  83. * 财务id
  84. */
  85. private String financeId;
  86. /**
  87. * 技术员id
  88. */
  89. private String technicianId;
  90. /**
  91. * 签单日期
  92. */
  93. private Date signTime;
  94. /**
  95. * 结算日期
  96. */
  97. private Date settlementTime;
  98. /**
  99. * 合同图片
  100. */
  101. private String contractPictureUrl;
  102. /**
  103. * 合同编号
  104. */
  105. private String contractNo;
  106. /**
  107. * 业务品类
  108. */
  109. private String contractType;
  110. /**
  111. * 企业负责人
  112. */
  113. private String contacts;
  114. /**
  115. * 负责人联系电话
  116. */
  117. private String contactMobile;
  118. /**
  119. * 企业法人
  120. */
  121. private String legalPerson;
  122. /**
  123. * 法人联系电话
  124. */
  125. private String legalPersonTel;
  126. /**
  127. * 校对单量
  128. */
  129. private Double proofCount;
  130. /**
  131. * 校对人
  132. */
  133. private String proofAid;
  134. /**
  135. * 校对时间
  136. */
  137. private Date proofTime;
  138. /**
  139. * 校对状态(0-未校对 1已校对)
  140. */
  141. private Integer proofStatus;
  142. /**
  143. * 订单部门
  144. */
  145. private String orderDep;
  146. /**
  147. * 外包 0否 1是
  148. */
  149. private Integer outsource;
  150. /**
  151. * 附加订单
  152. */
  153. private String additionalOrder;
  154. /**
  155. * 原订单
  156. */
  157. private String primaryOrder;
  158. /**
  159. * 原营销员id
  160. */
  161. private String oldSalesmanId;
  162. /**
  163. * 驳回位置 (同流程状态)
  164. */
  165. private Integer backStatus;
  166. /**
  167. * 补充协议
  168. */
  169. private String agreementUrl;
  170. /**
  171. * 客户类型 0新客户 1老客户
  172. */
  173. private Integer newUser;
  174. /**
  175. * 服务内容
  176. */
  177. private String serviceContent;
  178. /**
  179. * 销售类型 0=电话新开发,1=电话自带资源,2=网络,3=渠道,4=转介绍,5=其他,6=高新复购,7=其他复购
  180. */
  181. private Integer salesType;
  182. /**
  183. * 渠道客户编号
  184. */
  185. private String channelId;
  186. /**
  187. * 销售其他描述
  188. */
  189. private String other;
  190. /**
  191. * 客户类型 0私有客户 1签单客户
  192. */
  193. private Integer userType;
  194. private static final long serialVersionUID = 1L;
  195. public String getOrderNo() {
  196. return orderNo;
  197. }
  198. public void setOrderNo(String orderNo) {
  199. this.orderNo = orderNo;
  200. }
  201. public Integer getOrderType() {
  202. return orderType;
  203. }
  204. public void setOrderType(Integer orderType) {
  205. this.orderType = orderType;
  206. }
  207. public String getCreater() {
  208. return creater;
  209. }
  210. public void setCreater(String creater) {
  211. this.creater = creater;
  212. }
  213. public Date getCreateTime() {
  214. return createTime;
  215. }
  216. public void setCreateTime(Date createTime) {
  217. this.createTime = createTime;
  218. }
  219. public Date getUpdateTime() {
  220. return updateTime;
  221. }
  222. public void setUpdateTime(Date updateTime) {
  223. this.updateTime = updateTime;
  224. }
  225. public String getBuyerId() {
  226. return buyerId;
  227. }
  228. public void setBuyerId(String buyerId) {
  229. this.buyerId = buyerId;
  230. }
  231. public BigDecimal getFirstAmount() {
  232. return firstAmount;
  233. }
  234. public void setFirstAmount(BigDecimal firstAmount) {
  235. this.firstAmount = firstAmount;
  236. }
  237. public BigDecimal getTotalAmount() {
  238. return totalAmount;
  239. }
  240. public void setTotalAmount(BigDecimal totalAmount) {
  241. this.totalAmount = totalAmount;
  242. }
  243. public BigDecimal getSettlementAmount() {
  244. return settlementAmount;
  245. }
  246. public void setSettlementAmount(BigDecimal settlementAmount) {
  247. this.settlementAmount = settlementAmount;
  248. }
  249. public BigDecimal getRefundAmount() {
  250. return refundAmount;
  251. }
  252. public void setRefundAmount(BigDecimal refundAmount) {
  253. this.refundAmount = refundAmount;
  254. }
  255. public Integer getOrderStatus() {
  256. return orderStatus;
  257. }
  258. public void setOrderStatus(Integer orderStatus) {
  259. this.orderStatus = orderStatus;
  260. }
  261. public Integer getLiquidationStatus() {
  262. return liquidationStatus;
  263. }
  264. public void setLiquidationStatus(Integer liquidationStatus) {
  265. this.liquidationStatus = liquidationStatus;
  266. }
  267. public Integer getProcessStatus() {
  268. return processStatus;
  269. }
  270. public void setProcessStatus(Integer processStatus) {
  271. this.processStatus = processStatus;
  272. }
  273. public Integer getProjectStatus() {
  274. return projectStatus;
  275. }
  276. public void setProjectStatus(Integer projectStatus) {
  277. this.projectStatus = projectStatus;
  278. }
  279. public Integer getApproval() {
  280. return approval;
  281. }
  282. public void setApproval(Integer approval) {
  283. this.approval = approval;
  284. }
  285. public String getOrderRemarks() {
  286. return orderRemarks;
  287. }
  288. public void setOrderRemarks(String orderRemarks) {
  289. this.orderRemarks = orderRemarks;
  290. }
  291. public Integer getDeleteSign() {
  292. return deleteSign;
  293. }
  294. public void setDeleteSign(Integer deleteSign) {
  295. this.deleteSign = deleteSign;
  296. }
  297. public String getSalesmanId() {
  298. return salesmanId;
  299. }
  300. public void setSalesmanId(String salesmanId) {
  301. this.salesmanId = salesmanId;
  302. }
  303. public String getFinanceId() {
  304. return financeId;
  305. }
  306. public void setFinanceId(String financeId) {
  307. this.financeId = financeId;
  308. }
  309. public String getTechnicianId() {
  310. return technicianId;
  311. }
  312. public void setTechnicianId(String technicianId) {
  313. this.technicianId = technicianId;
  314. }
  315. public Date getSignTime() {
  316. return signTime;
  317. }
  318. public void setSignTime(Date signTime) {
  319. this.signTime = signTime;
  320. }
  321. public Date getSettlementTime() {
  322. return settlementTime;
  323. }
  324. public void setSettlementTime(Date settlementTime) {
  325. this.settlementTime = settlementTime;
  326. }
  327. public String getContractPictureUrl() {
  328. return contractPictureUrl;
  329. }
  330. public void setContractPictureUrl(String contractPictureUrl) {
  331. this.contractPictureUrl = contractPictureUrl;
  332. }
  333. public String getContractNo() {
  334. return contractNo;
  335. }
  336. public void setContractNo(String contractNo) {
  337. this.contractNo = contractNo;
  338. }
  339. public String getContractType() {
  340. return contractType;
  341. }
  342. public void setContractType(String contractType) {
  343. this.contractType = contractType;
  344. }
  345. public String getContacts() {
  346. return contacts;
  347. }
  348. public void setContacts(String contacts) {
  349. this.contacts = contacts;
  350. }
  351. public String getContactMobile() {
  352. return contactMobile;
  353. }
  354. public void setContactMobile(String contactMobile) {
  355. this.contactMobile = contactMobile;
  356. }
  357. public String getLegalPerson() {
  358. return legalPerson;
  359. }
  360. public void setLegalPerson(String legalPerson) {
  361. this.legalPerson = legalPerson;
  362. }
  363. public String getLegalPersonTel() {
  364. return legalPersonTel;
  365. }
  366. public void setLegalPersonTel(String legalPersonTel) {
  367. this.legalPersonTel = legalPersonTel;
  368. }
  369. public Double getProofCount() {
  370. return proofCount;
  371. }
  372. public void setProofCount(Double proofCount) {
  373. this.proofCount = proofCount;
  374. }
  375. public String getProofAid() {
  376. return proofAid;
  377. }
  378. public void setProofAid(String proofAid) {
  379. this.proofAid = proofAid;
  380. }
  381. public Date getProofTime() {
  382. return proofTime;
  383. }
  384. public void setProofTime(Date proofTime) {
  385. this.proofTime = proofTime;
  386. }
  387. public Integer getProofStatus() {
  388. return proofStatus;
  389. }
  390. public void setProofStatus(Integer proofStatus) {
  391. this.proofStatus = proofStatus;
  392. }
  393. public String getOrderDep() {
  394. return orderDep;
  395. }
  396. public void setOrderDep(String orderDep) {
  397. this.orderDep = orderDep;
  398. }
  399. public Integer getOutsource() {
  400. return outsource;
  401. }
  402. public void setOutsource(Integer outsource) {
  403. this.outsource = outsource;
  404. }
  405. public String getAdditionalOrder() {
  406. return additionalOrder;
  407. }
  408. public void setAdditionalOrder(String additionalOrder) {
  409. this.additionalOrder = additionalOrder;
  410. }
  411. public String getPrimaryOrder() {
  412. return primaryOrder;
  413. }
  414. public void setPrimaryOrder(String primaryOrder) {
  415. this.primaryOrder = primaryOrder;
  416. }
  417. public String getOldSalesmanId() {
  418. return oldSalesmanId;
  419. }
  420. public void setOldSalesmanId(String oldSalesmanId) {
  421. this.oldSalesmanId = oldSalesmanId;
  422. }
  423. public Integer getBackStatus() {
  424. return backStatus;
  425. }
  426. public void setBackStatus(Integer backStatus) {
  427. this.backStatus = backStatus;
  428. }
  429. public String getAgreementUrl() {
  430. return agreementUrl;
  431. }
  432. public void setAgreementUrl(String agreementUrl) {
  433. this.agreementUrl = agreementUrl;
  434. }
  435. public Integer getNewUser() {
  436. return newUser;
  437. }
  438. public void setNewUser(Integer newUser) {
  439. this.newUser = newUser;
  440. }
  441. public String getServiceContent() {
  442. return serviceContent;
  443. }
  444. public void setServiceContent(String serviceContent) {
  445. this.serviceContent = serviceContent;
  446. }
  447. public Integer getSalesType() {
  448. return salesType;
  449. }
  450. public void setSalesType(Integer salesType) {
  451. this.salesType = salesType;
  452. }
  453. public String getChannelId() {
  454. return channelId;
  455. }
  456. public void setChannelId(String channelId) {
  457. this.channelId = channelId;
  458. }
  459. public String getOther() {
  460. return other;
  461. }
  462. public void setOther(String other) {
  463. this.other = other;
  464. }
  465. public Integer getUserType() {
  466. return userType;
  467. }
  468. public void setUserType(Integer userType) {
  469. this.userType = userType;
  470. }
  471. }