TOrderNew.java 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class TOrderNew {
  5. /**
  6. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.order_no
  7. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  8. */
  9. private String orderNo;
  10. /**
  11. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.order_type
  12. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  13. */
  14. private Integer orderType;
  15. /**
  16. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.creater
  17. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  18. */
  19. private String creater;
  20. /**
  21. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.create_time
  22. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  23. */
  24. private Date createTime;
  25. /**
  26. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.update_time
  27. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  28. */
  29. private Date updateTime;
  30. /**
  31. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.buyer_id
  32. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  33. */
  34. private String buyerId;
  35. /**
  36. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.first_amount
  37. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  38. */
  39. private BigDecimal firstAmount;
  40. /**
  41. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.total_amount
  42. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  43. */
  44. private BigDecimal totalAmount;
  45. /**
  46. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.settlement_amount
  47. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  48. */
  49. private BigDecimal settlementAmount;
  50. /**
  51. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.refund_amount
  52. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  53. */
  54. private BigDecimal refundAmount;
  55. /**
  56. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.order_status
  57. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  58. */
  59. private Integer orderStatus;
  60. /**
  61. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.liquidation_status
  62. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  63. */
  64. private Integer liquidationStatus;
  65. /**
  66. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.process_status
  67. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  68. */
  69. private Integer processStatus;
  70. /**
  71. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.project_status
  72. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  73. */
  74. private Integer projectStatus;
  75. /**
  76. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.approval
  77. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  78. */
  79. private Integer approval;
  80. /**
  81. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.order_remarks
  82. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  83. */
  84. private String orderRemarks;
  85. /**
  86. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.delete_sign
  87. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  88. */
  89. private Integer deleteSign;
  90. /**
  91. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.salesman_id
  92. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  93. */
  94. private String salesmanId;
  95. /**
  96. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.finance_id
  97. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  98. */
  99. private String financeId;
  100. /**
  101. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.technician_id
  102. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  103. */
  104. private String technicianId;
  105. /**
  106. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.sign_time
  107. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  108. */
  109. private Date signTime;
  110. /**
  111. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.settlement_time
  112. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  113. */
  114. private Date settlementTime;
  115. /**
  116. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.contract_no
  117. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  118. */
  119. private String contractNo;
  120. /**
  121. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.contract_type
  122. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  123. */
  124. private String contractType;
  125. /**
  126. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.contacts
  127. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  128. */
  129. private String contacts;
  130. /**
  131. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.contact_mobile
  132. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  133. */
  134. private String contactMobile;
  135. /**
  136. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.legal_person
  137. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  138. */
  139. private String legalPerson;
  140. /**
  141. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.legal_person_tel
  142. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  143. */
  144. private String legalPersonTel;
  145. /**
  146. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.proof_count
  147. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  148. */
  149. private Float proofCount;
  150. /**
  151. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.proof_aid
  152. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  153. */
  154. private String proofAid;
  155. /**
  156. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.proof_time
  157. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  158. */
  159. private Date proofTime;
  160. /**
  161. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.proof_status
  162. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  163. */
  164. private Integer proofStatus;
  165. /**
  166. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.order_dep
  167. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  168. */
  169. private String orderDep;
  170. /**
  171. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.outsource
  172. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  173. */
  174. private Integer outsource;
  175. /**
  176. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_new.contract_picture_url
  177. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  178. */
  179. private String contractPictureUrl;
  180. /**
  181. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.order_no
  182. * @return the value of t_order_new.order_no
  183. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  184. */
  185. public String getOrderNo() {
  186. return orderNo;
  187. }
  188. /**
  189. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.order_no
  190. * @param orderNo the value for t_order_new.order_no
  191. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  192. */
  193. public void setOrderNo(String orderNo) {
  194. this.orderNo = orderNo;
  195. }
  196. /**
  197. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.order_type
  198. * @return the value of t_order_new.order_type
  199. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  200. */
  201. public Integer getOrderType() {
  202. return orderType;
  203. }
  204. /**
  205. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.order_type
  206. * @param orderType the value for t_order_new.order_type
  207. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  208. */
  209. public void setOrderType(Integer orderType) {
  210. this.orderType = orderType;
  211. }
  212. /**
  213. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.creater
  214. * @return the value of t_order_new.creater
  215. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  216. */
  217. public String getCreater() {
  218. return creater;
  219. }
  220. /**
  221. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.creater
  222. * @param creater the value for t_order_new.creater
  223. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  224. */
  225. public void setCreater(String creater) {
  226. this.creater = creater;
  227. }
  228. /**
  229. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.create_time
  230. * @return the value of t_order_new.create_time
  231. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  232. */
  233. public Date getCreateTime() {
  234. return createTime;
  235. }
  236. /**
  237. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.create_time
  238. * @param createTime the value for t_order_new.create_time
  239. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  240. */
  241. public void setCreateTime(Date createTime) {
  242. this.createTime = createTime;
  243. }
  244. /**
  245. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.update_time
  246. * @return the value of t_order_new.update_time
  247. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  248. */
  249. public Date getUpdateTime() {
  250. return updateTime;
  251. }
  252. /**
  253. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.update_time
  254. * @param updateTime the value for t_order_new.update_time
  255. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  256. */
  257. public void setUpdateTime(Date updateTime) {
  258. this.updateTime = updateTime;
  259. }
  260. /**
  261. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.buyer_id
  262. * @return the value of t_order_new.buyer_id
  263. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  264. */
  265. public String getBuyerId() {
  266. return buyerId;
  267. }
  268. /**
  269. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.buyer_id
  270. * @param buyerId the value for t_order_new.buyer_id
  271. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  272. */
  273. public void setBuyerId(String buyerId) {
  274. this.buyerId = buyerId;
  275. }
  276. /**
  277. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.first_amount
  278. * @return the value of t_order_new.first_amount
  279. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  280. */
  281. public BigDecimal getFirstAmount() {
  282. return firstAmount;
  283. }
  284. /**
  285. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.first_amount
  286. * @param firstAmount the value for t_order_new.first_amount
  287. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  288. */
  289. public void setFirstAmount(BigDecimal firstAmount) {
  290. this.firstAmount = firstAmount;
  291. }
  292. /**
  293. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.total_amount
  294. * @return the value of t_order_new.total_amount
  295. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  296. */
  297. public BigDecimal getTotalAmount() {
  298. return totalAmount;
  299. }
  300. /**
  301. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.total_amount
  302. * @param totalAmount the value for t_order_new.total_amount
  303. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  304. */
  305. public void setTotalAmount(BigDecimal totalAmount) {
  306. this.totalAmount = totalAmount;
  307. }
  308. /**
  309. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.settlement_amount
  310. * @return the value of t_order_new.settlement_amount
  311. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  312. */
  313. public BigDecimal getSettlementAmount() {
  314. return settlementAmount;
  315. }
  316. /**
  317. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.settlement_amount
  318. * @param settlementAmount the value for t_order_new.settlement_amount
  319. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  320. */
  321. public void setSettlementAmount(BigDecimal settlementAmount) {
  322. this.settlementAmount = settlementAmount;
  323. }
  324. /**
  325. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.refund_amount
  326. * @return the value of t_order_new.refund_amount
  327. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  328. */
  329. public BigDecimal getRefundAmount() {
  330. return refundAmount;
  331. }
  332. /**
  333. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.refund_amount
  334. * @param refundAmount the value for t_order_new.refund_amount
  335. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  336. */
  337. public void setRefundAmount(BigDecimal refundAmount) {
  338. this.refundAmount = refundAmount;
  339. }
  340. /**
  341. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.order_status
  342. * @return the value of t_order_new.order_status
  343. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  344. */
  345. public Integer getOrderStatus() {
  346. return orderStatus;
  347. }
  348. /**
  349. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.order_status
  350. * @param orderStatus the value for t_order_new.order_status
  351. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  352. */
  353. public void setOrderStatus(Integer orderStatus) {
  354. this.orderStatus = orderStatus;
  355. }
  356. /**
  357. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.liquidation_status
  358. * @return the value of t_order_new.liquidation_status
  359. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  360. */
  361. public Integer getLiquidationStatus() {
  362. return liquidationStatus;
  363. }
  364. /**
  365. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.liquidation_status
  366. * @param liquidationStatus the value for t_order_new.liquidation_status
  367. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  368. */
  369. public void setLiquidationStatus(Integer liquidationStatus) {
  370. this.liquidationStatus = liquidationStatus;
  371. }
  372. /**
  373. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.process_status
  374. * @return the value of t_order_new.process_status
  375. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  376. */
  377. public Integer getProcessStatus() {
  378. return processStatus;
  379. }
  380. /**
  381. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.process_status
  382. * @param processStatus the value for t_order_new.process_status
  383. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  384. */
  385. public void setProcessStatus(Integer processStatus) {
  386. this.processStatus = processStatus;
  387. }
  388. /**
  389. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.project_status
  390. * @return the value of t_order_new.project_status
  391. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  392. */
  393. public Integer getProjectStatus() {
  394. return projectStatus;
  395. }
  396. /**
  397. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.project_status
  398. * @param projectStatus the value for t_order_new.project_status
  399. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  400. */
  401. public void setProjectStatus(Integer projectStatus) {
  402. this.projectStatus = projectStatus;
  403. }
  404. /**
  405. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.approval
  406. * @return the value of t_order_new.approval
  407. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  408. */
  409. public Integer getApproval() {
  410. return approval;
  411. }
  412. /**
  413. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.approval
  414. * @param approval the value for t_order_new.approval
  415. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  416. */
  417. public void setApproval(Integer approval) {
  418. this.approval = approval;
  419. }
  420. /**
  421. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.order_remarks
  422. * @return the value of t_order_new.order_remarks
  423. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  424. */
  425. public String getOrderRemarks() {
  426. return orderRemarks;
  427. }
  428. /**
  429. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.order_remarks
  430. * @param orderRemarks the value for t_order_new.order_remarks
  431. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  432. */
  433. public void setOrderRemarks(String orderRemarks) {
  434. this.orderRemarks = orderRemarks;
  435. }
  436. /**
  437. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.delete_sign
  438. * @return the value of t_order_new.delete_sign
  439. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  440. */
  441. public Integer getDeleteSign() {
  442. return deleteSign;
  443. }
  444. /**
  445. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.delete_sign
  446. * @param deleteSign the value for t_order_new.delete_sign
  447. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  448. */
  449. public void setDeleteSign(Integer deleteSign) {
  450. this.deleteSign = deleteSign;
  451. }
  452. /**
  453. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.salesman_id
  454. * @return the value of t_order_new.salesman_id
  455. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  456. */
  457. public String getSalesmanId() {
  458. return salesmanId;
  459. }
  460. /**
  461. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.salesman_id
  462. * @param salesmanId the value for t_order_new.salesman_id
  463. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  464. */
  465. public void setSalesmanId(String salesmanId) {
  466. this.salesmanId = salesmanId;
  467. }
  468. /**
  469. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.finance_id
  470. * @return the value of t_order_new.finance_id
  471. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  472. */
  473. public String getFinanceId() {
  474. return financeId;
  475. }
  476. /**
  477. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.finance_id
  478. * @param financeId the value for t_order_new.finance_id
  479. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  480. */
  481. public void setFinanceId(String financeId) {
  482. this.financeId = financeId;
  483. }
  484. /**
  485. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.technician_id
  486. * @return the value of t_order_new.technician_id
  487. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  488. */
  489. public String getTechnicianId() {
  490. return technicianId;
  491. }
  492. /**
  493. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.technician_id
  494. * @param technicianId the value for t_order_new.technician_id
  495. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  496. */
  497. public void setTechnicianId(String technicianId) {
  498. this.technicianId = technicianId;
  499. }
  500. /**
  501. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.sign_time
  502. * @return the value of t_order_new.sign_time
  503. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  504. */
  505. public Date getSignTime() {
  506. return signTime;
  507. }
  508. /**
  509. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.sign_time
  510. * @param signTime the value for t_order_new.sign_time
  511. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  512. */
  513. public void setSignTime(Date signTime) {
  514. this.signTime = signTime;
  515. }
  516. /**
  517. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.settlement_time
  518. * @return the value of t_order_new.settlement_time
  519. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  520. */
  521. public Date getSettlementTime() {
  522. return settlementTime;
  523. }
  524. /**
  525. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.settlement_time
  526. * @param settlementTime the value for t_order_new.settlement_time
  527. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  528. */
  529. public void setSettlementTime(Date settlementTime) {
  530. this.settlementTime = settlementTime;
  531. }
  532. /**
  533. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.contract_no
  534. * @return the value of t_order_new.contract_no
  535. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  536. */
  537. public String getContractNo() {
  538. return contractNo;
  539. }
  540. /**
  541. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.contract_no
  542. * @param contractNo the value for t_order_new.contract_no
  543. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  544. */
  545. public void setContractNo(String contractNo) {
  546. this.contractNo = contractNo;
  547. }
  548. /**
  549. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.contract_type
  550. * @return the value of t_order_new.contract_type
  551. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  552. */
  553. public String getContractType() {
  554. return contractType;
  555. }
  556. /**
  557. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.contract_type
  558. * @param contractType the value for t_order_new.contract_type
  559. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  560. */
  561. public void setContractType(String contractType) {
  562. this.contractType = contractType;
  563. }
  564. /**
  565. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.contacts
  566. * @return the value of t_order_new.contacts
  567. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  568. */
  569. public String getContacts() {
  570. return contacts;
  571. }
  572. /**
  573. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.contacts
  574. * @param contacts the value for t_order_new.contacts
  575. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  576. */
  577. public void setContacts(String contacts) {
  578. this.contacts = contacts;
  579. }
  580. /**
  581. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.contact_mobile
  582. * @return the value of t_order_new.contact_mobile
  583. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  584. */
  585. public String getContactMobile() {
  586. return contactMobile;
  587. }
  588. /**
  589. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.contact_mobile
  590. * @param contactMobile the value for t_order_new.contact_mobile
  591. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  592. */
  593. public void setContactMobile(String contactMobile) {
  594. this.contactMobile = contactMobile;
  595. }
  596. /**
  597. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.legal_person
  598. * @return the value of t_order_new.legal_person
  599. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  600. */
  601. public String getLegalPerson() {
  602. return legalPerson;
  603. }
  604. /**
  605. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.legal_person
  606. * @param legalPerson the value for t_order_new.legal_person
  607. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  608. */
  609. public void setLegalPerson(String legalPerson) {
  610. this.legalPerson = legalPerson;
  611. }
  612. /**
  613. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.legal_person_tel
  614. * @return the value of t_order_new.legal_person_tel
  615. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  616. */
  617. public String getLegalPersonTel() {
  618. return legalPersonTel;
  619. }
  620. /**
  621. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.legal_person_tel
  622. * @param legalPersonTel the value for t_order_new.legal_person_tel
  623. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  624. */
  625. public void setLegalPersonTel(String legalPersonTel) {
  626. this.legalPersonTel = legalPersonTel;
  627. }
  628. /**
  629. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.proof_count
  630. * @return the value of t_order_new.proof_count
  631. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  632. */
  633. public Float getProofCount() {
  634. return proofCount;
  635. }
  636. /**
  637. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.proof_count
  638. * @param proofCount the value for t_order_new.proof_count
  639. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  640. */
  641. public void setProofCount(Float proofCount) {
  642. this.proofCount = proofCount;
  643. }
  644. /**
  645. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.proof_aid
  646. * @return the value of t_order_new.proof_aid
  647. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  648. */
  649. public String getProofAid() {
  650. return proofAid;
  651. }
  652. /**
  653. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.proof_aid
  654. * @param proofAid the value for t_order_new.proof_aid
  655. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  656. */
  657. public void setProofAid(String proofAid) {
  658. this.proofAid = proofAid;
  659. }
  660. /**
  661. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.proof_time
  662. * @return the value of t_order_new.proof_time
  663. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  664. */
  665. public Date getProofTime() {
  666. return proofTime;
  667. }
  668. /**
  669. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.proof_time
  670. * @param proofTime the value for t_order_new.proof_time
  671. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  672. */
  673. public void setProofTime(Date proofTime) {
  674. this.proofTime = proofTime;
  675. }
  676. /**
  677. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.proof_status
  678. * @return the value of t_order_new.proof_status
  679. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  680. */
  681. public Integer getProofStatus() {
  682. return proofStatus;
  683. }
  684. /**
  685. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.proof_status
  686. * @param proofStatus the value for t_order_new.proof_status
  687. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  688. */
  689. public void setProofStatus(Integer proofStatus) {
  690. this.proofStatus = proofStatus;
  691. }
  692. /**
  693. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.order_dep
  694. * @return the value of t_order_new.order_dep
  695. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  696. */
  697. public String getOrderDep() {
  698. return orderDep;
  699. }
  700. /**
  701. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.order_dep
  702. * @param orderDep the value for t_order_new.order_dep
  703. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  704. */
  705. public void setOrderDep(String orderDep) {
  706. this.orderDep = orderDep;
  707. }
  708. /**
  709. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.outsource
  710. * @return the value of t_order_new.outsource
  711. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  712. */
  713. public Integer getOutsource() {
  714. return outsource;
  715. }
  716. /**
  717. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.outsource
  718. * @param outsource the value for t_order_new.outsource
  719. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  720. */
  721. public void setOutsource(Integer outsource) {
  722. this.outsource = outsource;
  723. }
  724. /**
  725. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_new.contract_picture_url
  726. * @return the value of t_order_new.contract_picture_url
  727. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  728. */
  729. public String getContractPictureUrl() {
  730. return contractPictureUrl;
  731. }
  732. /**
  733. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_new.contract_picture_url
  734. * @param contractPictureUrl the value for t_order_new.contract_picture_url
  735. * @mbg.generated Mon Jun 17 11:48:15 CST 2019
  736. */
  737. public void setContractPictureUrl(String contractPictureUrl) {
  738. this.contractPictureUrl = contractPictureUrl;
  739. }
  740. }