WxOrderEntity.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * @author huangyq
  7. * @email
  8. * @date 2019-11-07 16:11:34
  9. */
  10. public class WxOrderEntity implements Serializable {
  11. private static final long serialVersionUID = 1L;
  12. private String wxOrderSn;
  13. private String merchOrderId;
  14. private String orderSn;
  15. private String wxOrderId;
  16. private String merchSn;
  17. private String merchName;
  18. private String platSn;
  19. private String platName;
  20. private String thirdPartyMerchCode;
  21. private String thirdPartyMerchName;
  22. private Date placeOrderlTime;
  23. private String autoSend;
  24. private String buyerRegNo;
  25. private Date buyerBillTime;
  26. private String buyerIdType;
  27. private String buyerIdCode;
  28. private String buyerName;
  29. private String buyerTel;
  30. private String consigneeIdType;
  31. private String consigneeIdCode;
  32. private String consigneeName;
  33. private String consigneeMob;
  34. private String consigneeTel;
  35. private String consigneeCountryCode;
  36. private String consigneeProvinceCode;
  37. private String consigneeProvince;
  38. private String consigneeCityCode;
  39. private String consigneeCity;
  40. private String consigneeDistrictCode;
  41. private String consigneeDistrict;
  42. private String consigneeAddress;
  43. private String consigneeZipCode;
  44. private String payerName;
  45. private String payerIdType;
  46. private String payerIdCode;
  47. private String payerMob;
  48. private String payEntCusCode;
  49. private String payNo;
  50. private BigDecimal goodsValue;
  51. private BigDecimal freight;
  52. private BigDecimal discount;
  53. private BigDecimal taxTotal;
  54. private BigDecimal acturalPaid;
  55. private Date payTime;
  56. private String exprType;
  57. private String exprCompId;
  58. private BigDecimal declExprFee;
  59. private String batchNumbers;
  60. private BigDecimal declPostTax;
  61. private String shopId;
  62. private String extraTag;
  63. private String currencyCode;
  64. private String wsFlag;
  65. private String buyerPayCheck;
  66. private String wxOrderDetail;
  67. private String clecOrderStatus;
  68. private String wayOrderStatus;
  69. private String projectCheckStatus;
  70. private String playOrderStatus;
  71. private String remark;
  72. private String createrSn;
  73. private Date createTime;
  74. private String moderSn;
  75. private Date modTime;
  76. private Date tstm;
  77. private String exField;
  78. private String exField2;
  79. private String exField3;
  80. private String exField4;
  81. private String exField5;
  82. private String exprAgreementType;
  83. private String placeOrderlTimeStr;
  84. public String getPlaceOrderlTimeStr() {
  85. return placeOrderlTimeStr;
  86. }
  87. public void setPlaceOrderlTimeStr(String placeOrderlTimeStr) {
  88. this.placeOrderlTimeStr = placeOrderlTimeStr;
  89. }
  90. public String getExprAgreementType() {
  91. return exprAgreementType;
  92. }
  93. public void setExprAgreementType(String exprAgreementType) {
  94. this.exprAgreementType = exprAgreementType;
  95. }
  96. public String getWxOrderSn() {
  97. return wxOrderSn;
  98. }
  99. public void setWxOrderSn(String wxOrderSn) {
  100. this.wxOrderSn = wxOrderSn == null ? null : wxOrderSn.trim();
  101. }
  102. public String getMerchOrderId() {
  103. return merchOrderId;
  104. }
  105. public void setMerchOrderId(String merchOrderId) {
  106. this.merchOrderId = merchOrderId == null ? null : merchOrderId.trim();
  107. }
  108. public String getOrderSn() {
  109. return orderSn;
  110. }
  111. public void setOrderSn(String orderSn) {
  112. this.orderSn = orderSn == null ? null : orderSn.trim();
  113. }
  114. public String getWxOrderId() {
  115. return wxOrderId;
  116. }
  117. public void setWxOrderId(String wxOrderId) {
  118. this.wxOrderId = wxOrderId == null ? null : wxOrderId.trim();
  119. }
  120. public String getMerchSn() {
  121. return merchSn;
  122. }
  123. public void setMerchSn(String merchSn) {
  124. this.merchSn = merchSn == null ? null : merchSn.trim();
  125. }
  126. public String getMerchName() {
  127. return merchName;
  128. }
  129. public void setMerchName(String merchName) {
  130. this.merchName = merchName == null ? null : merchName.trim();
  131. }
  132. public String getPlatSn() {
  133. return platSn;
  134. }
  135. public void setPlatSn(String platSn) {
  136. this.platSn = platSn == null ? null : platSn.trim();
  137. }
  138. public String getPlatName() {
  139. return platName;
  140. }
  141. public void setPlatName(String platName) {
  142. this.platName = platName == null ? null : platName.trim();
  143. }
  144. public String getThirdPartyMerchCode() {
  145. return thirdPartyMerchCode;
  146. }
  147. public void setThirdPartyMerchCode(String thirdPartyMerchCode) {
  148. this.thirdPartyMerchCode = thirdPartyMerchCode == null ? null : thirdPartyMerchCode.trim();
  149. }
  150. public String getThirdPartyMerchName() {
  151. return thirdPartyMerchName;
  152. }
  153. public void setThirdPartyMerchName(String thirdPartyMerchName) {
  154. this.thirdPartyMerchName = thirdPartyMerchName == null ? null : thirdPartyMerchName.trim();
  155. }
  156. public Date getPlaceOrderlTime() {
  157. return placeOrderlTime;
  158. }
  159. public void setPlaceOrderlTime(Date placeOrderlTime) {
  160. this.placeOrderlTime = placeOrderlTime;
  161. }
  162. public String getAutoSend() {
  163. return autoSend;
  164. }
  165. public void setAutoSend(String autoSend) {
  166. this.autoSend = autoSend == null ? null : autoSend.trim();
  167. }
  168. public String getBuyerRegNo() {
  169. return buyerRegNo;
  170. }
  171. public void setBuyerRegNo(String buyerRegNo) {
  172. this.buyerRegNo = buyerRegNo == null ? null : buyerRegNo.trim();
  173. }
  174. public Date getBuyerBillTime() {
  175. return buyerBillTime;
  176. }
  177. public void setBuyerBillTime(Date buyerBillTime) {
  178. this.buyerBillTime = buyerBillTime;
  179. }
  180. public String getBuyerIdType() {
  181. return buyerIdType;
  182. }
  183. public void setBuyerIdType(String buyerIdType) {
  184. this.buyerIdType = buyerIdType == null ? null : buyerIdType.trim();
  185. }
  186. public String getBuyerIdCode() {
  187. return buyerIdCode;
  188. }
  189. public void setBuyerIdCode(String buyerIdCode) {
  190. this.buyerIdCode = buyerIdCode == null ? null : buyerIdCode.trim();
  191. }
  192. public String getBuyerName() {
  193. return buyerName;
  194. }
  195. public void setBuyerName(String buyerName) {
  196. this.buyerName = buyerName == null ? null : buyerName.trim();
  197. }
  198. public String getBuyerTel() {
  199. return buyerTel;
  200. }
  201. public void setBuyerTel(String buyerTel) {
  202. this.buyerTel = buyerTel == null ? null : buyerTel.trim();
  203. }
  204. public String getConsigneeIdType() {
  205. return consigneeIdType;
  206. }
  207. public void setConsigneeIdType(String consigneeIdType) {
  208. this.consigneeIdType = consigneeIdType == null ? null : consigneeIdType.trim();
  209. }
  210. public String getConsigneeIdCode() {
  211. return consigneeIdCode;
  212. }
  213. public void setConsigneeIdCode(String consigneeIdCode) {
  214. this.consigneeIdCode = consigneeIdCode == null ? null : consigneeIdCode.trim();
  215. }
  216. public String getConsigneeName() {
  217. return consigneeName;
  218. }
  219. public void setConsigneeName(String consigneeName) {
  220. this.consigneeName = consigneeName == null ? null : consigneeName.trim();
  221. }
  222. public String getConsigneeMob() {
  223. return consigneeMob;
  224. }
  225. public void setConsigneeMob(String consigneeMob) {
  226. this.consigneeMob = consigneeMob == null ? null : consigneeMob.trim();
  227. }
  228. public String getConsigneeTel() {
  229. return consigneeTel;
  230. }
  231. public void setConsigneeTel(String consigneeTel) {
  232. this.consigneeTel = consigneeTel == null ? null : consigneeTel.trim();
  233. }
  234. public String getConsigneeCountryCode() {
  235. return consigneeCountryCode;
  236. }
  237. public void setConsigneeCountryCode(String consigneeCountryCode) {
  238. this.consigneeCountryCode = consigneeCountryCode == null ? null : consigneeCountryCode.trim();
  239. }
  240. public String getConsigneeProvinceCode() {
  241. return consigneeProvinceCode;
  242. }
  243. public void setConsigneeProvinceCode(String consigneeProvinceCode) {
  244. this.consigneeProvinceCode = consigneeProvinceCode == null ? null : consigneeProvinceCode.trim();
  245. }
  246. public String getConsigneeProvince() {
  247. return consigneeProvince;
  248. }
  249. public void setConsigneeProvince(String consigneeProvince) {
  250. this.consigneeProvince = consigneeProvince == null ? null : consigneeProvince.trim();
  251. }
  252. public String getConsigneeCityCode() {
  253. return consigneeCityCode;
  254. }
  255. public void setConsigneeCityCode(String consigneeCityCode) {
  256. this.consigneeCityCode = consigneeCityCode == null ? null : consigneeCityCode.trim();
  257. }
  258. public String getConsigneeCity() {
  259. return consigneeCity;
  260. }
  261. public void setConsigneeCity(String consigneeCity) {
  262. this.consigneeCity = consigneeCity == null ? null : consigneeCity.trim();
  263. }
  264. public String getConsigneeDistrictCode() {
  265. return consigneeDistrictCode;
  266. }
  267. public void setConsigneeDistrictCode(String consigneeDistrictCode) {
  268. this.consigneeDistrictCode = consigneeDistrictCode == null ? null : consigneeDistrictCode.trim();
  269. }
  270. public String getConsigneeDistrict() {
  271. return consigneeDistrict;
  272. }
  273. public void setConsigneeDistrict(String consigneeDistrict) {
  274. this.consigneeDistrict = consigneeDistrict == null ? null : consigneeDistrict.trim();
  275. }
  276. public String getConsigneeAddress() {
  277. return consigneeAddress;
  278. }
  279. public void setConsigneeAddress(String consigneeAddress) {
  280. this.consigneeAddress = consigneeAddress == null ? null : consigneeAddress.trim();
  281. }
  282. public String getConsigneeZipCode() {
  283. return consigneeZipCode;
  284. }
  285. public void setConsigneeZipCode(String consigneeZipCode) {
  286. this.consigneeZipCode = consigneeZipCode == null ? null : consigneeZipCode.trim();
  287. }
  288. public String getPayerName() {
  289. return payerName;
  290. }
  291. public void setPayerName(String payerName) {
  292. this.payerName = payerName == null ? null : payerName.trim();
  293. }
  294. public String getPayerIdType() {
  295. return payerIdType;
  296. }
  297. public void setPayerIdType(String payerIdType) {
  298. this.payerIdType = payerIdType == null ? null : payerIdType.trim();
  299. }
  300. public String getPayerIdCode() {
  301. return payerIdCode;
  302. }
  303. public void setPayerIdCode(String payerIdCode) {
  304. this.payerIdCode = payerIdCode == null ? null : payerIdCode.trim();
  305. }
  306. public String getPayerMob() {
  307. return payerMob;
  308. }
  309. public void setPayerMob(String payerMob) {
  310. this.payerMob = payerMob == null ? null : payerMob.trim();
  311. }
  312. public String getPayEntCusCode() {
  313. return payEntCusCode;
  314. }
  315. public void setPayEntCusCode(String payEntCusCode) {
  316. this.payEntCusCode = payEntCusCode == null ? null : payEntCusCode.trim();
  317. }
  318. public String getPayNo() {
  319. return payNo;
  320. }
  321. public void setPayNo(String payNo) {
  322. this.payNo = payNo == null ? null : payNo.trim();
  323. }
  324. public BigDecimal getGoodsValue() {
  325. return goodsValue;
  326. }
  327. public void setGoodsValue(BigDecimal goodsValue) {
  328. this.goodsValue = goodsValue;
  329. }
  330. public BigDecimal getFreight() {
  331. return freight;
  332. }
  333. public void setFreight(BigDecimal freight) {
  334. this.freight = freight;
  335. }
  336. public BigDecimal getDiscount() {
  337. return discount;
  338. }
  339. public void setDiscount(BigDecimal discount) {
  340. this.discount = discount;
  341. }
  342. public BigDecimal getTaxTotal() {
  343. return taxTotal;
  344. }
  345. public void setTaxTotal(BigDecimal taxTotal) {
  346. this.taxTotal = taxTotal;
  347. }
  348. public BigDecimal getActuralPaid() {
  349. return acturalPaid;
  350. }
  351. public void setActuralPaid(BigDecimal acturalPaid) {
  352. this.acturalPaid = acturalPaid;
  353. }
  354. public Date getPayTime() {
  355. return payTime;
  356. }
  357. public void setPayTime(Date payTime) {
  358. this.payTime = payTime;
  359. }
  360. public String getExprType() {
  361. return exprType;
  362. }
  363. public void setExprType(String exprType) {
  364. this.exprType = exprType == null ? null : exprType.trim();
  365. }
  366. public String getExprCompId() {
  367. return exprCompId;
  368. }
  369. public void setExprCompId(String exprCompId) {
  370. this.exprCompId = exprCompId == null ? null : exprCompId.trim();
  371. }
  372. public BigDecimal getDeclExprFee() {
  373. return declExprFee;
  374. }
  375. public void setDeclExprFee(BigDecimal declExprFee) {
  376. this.declExprFee = declExprFee;
  377. }
  378. public String getBatchNumbers() {
  379. return batchNumbers;
  380. }
  381. public void setBatchNumbers(String batchNumbers) {
  382. this.batchNumbers = batchNumbers == null ? null : batchNumbers.trim();
  383. }
  384. public BigDecimal getDeclPostTax() {
  385. return declPostTax;
  386. }
  387. public void setDeclPostTax(BigDecimal declPostTax) {
  388. this.declPostTax = declPostTax;
  389. }
  390. public String getShopId() {
  391. return shopId;
  392. }
  393. public void setShopId(String shopId) {
  394. this.shopId = shopId == null ? null : shopId.trim();
  395. }
  396. public String getExtraTag() {
  397. return extraTag;
  398. }
  399. public void setExtraTag(String extraTag) {
  400. this.extraTag = extraTag == null ? null : extraTag.trim();
  401. }
  402. public String getCurrencyCode() {
  403. return currencyCode;
  404. }
  405. public void setCurrencyCode(String currencyCode) {
  406. this.currencyCode = currencyCode == null ? null : currencyCode.trim();
  407. }
  408. public String getWsFlag() {
  409. return wsFlag;
  410. }
  411. public void setWsFlag(String wsFlag) {
  412. this.wsFlag = wsFlag == null ? null : wsFlag.trim();
  413. }
  414. public String getBuyerPayCheck() {
  415. return buyerPayCheck;
  416. }
  417. public void setBuyerPayCheck(String buyerPayCheck) {
  418. this.buyerPayCheck = buyerPayCheck;
  419. }
  420. public String getWxOrderDetail() {
  421. return wxOrderDetail;
  422. }
  423. public void setWxOrderDetail(String wxOrderDetail) {
  424. this.wxOrderDetail = wxOrderDetail;
  425. }
  426. public String getClecOrderStatus() {
  427. return clecOrderStatus;
  428. }
  429. public void setClecOrderStatus(String clecOrderStatus) {
  430. this.clecOrderStatus = clecOrderStatus == null ? null : clecOrderStatus.trim();
  431. }
  432. public String getWayOrderStatus() {
  433. return wayOrderStatus;
  434. }
  435. public void setWayOrderStatus(String wayOrderStatus) {
  436. this.wayOrderStatus = wayOrderStatus == null ? null : wayOrderStatus.trim();
  437. }
  438. public String getProjectCheckStatus() {
  439. return projectCheckStatus;
  440. }
  441. public void setProjectCheckStatus(String projectCheckStatus) {
  442. this.projectCheckStatus = projectCheckStatus == null ? null : projectCheckStatus.trim();
  443. }
  444. public String getPlayOrderStatus() {
  445. return playOrderStatus;
  446. }
  447. public void setPlayOrderStatus(String playOrderStatus) {
  448. this.playOrderStatus = playOrderStatus == null ? null : playOrderStatus.trim();
  449. }
  450. public String getRemark() {
  451. return remark;
  452. }
  453. public void setRemark(String remark) {
  454. this.remark = remark == null ? null : remark.trim();
  455. }
  456. public String getCreaterSn() {
  457. return createrSn;
  458. }
  459. public void setCreaterSn(String createrSn) {
  460. this.createrSn = createrSn == null ? null : createrSn.trim();
  461. }
  462. public Date getCreateTime() {
  463. return createTime;
  464. }
  465. public void setCreateTime(Date createTime) {
  466. this.createTime = createTime;
  467. }
  468. public String getModerSn() {
  469. return moderSn;
  470. }
  471. public void setModerSn(String moderSn) {
  472. this.moderSn = moderSn == null ? null : moderSn.trim();
  473. }
  474. public Date getModTime() {
  475. return modTime;
  476. }
  477. public void setModTime(Date modTime) {
  478. this.modTime = modTime;
  479. }
  480. public Date getTstm() {
  481. return tstm;
  482. }
  483. public void setTstm(Date tstm) {
  484. this.tstm = tstm;
  485. }
  486. public String getExField() {
  487. return exField;
  488. }
  489. public void setExField(String exField) {
  490. this.exField = exField == null ? null : exField.trim();
  491. }
  492. public String getExField2() {
  493. return exField2;
  494. }
  495. public void setExField2(String exField2) {
  496. this.exField2 = exField2 == null ? null : exField2.trim();
  497. }
  498. public String getExField3() {
  499. return exField3;
  500. }
  501. public void setExField3(String exField3) {
  502. this.exField3 = exField3 == null ? null : exField3.trim();
  503. }
  504. public String getExField4() {
  505. return exField4;
  506. }
  507. public void setExField4(String exField4) {
  508. this.exField4 = exField4 == null ? null : exField4.trim();
  509. }
  510. public String getExField5() {
  511. return exField5;
  512. }
  513. public void setExField5(String exField5) {
  514. this.exField5 = exField5 == null ? null : exField5.trim();
  515. }
  516. }