WxOrderEntity.java 17 KB

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