123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735 |
- package com.kmall.admin.entity;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * @author huangyq
- * @email
- * @date 2019-11-07 16:11:34
- */
- public class WxOrderEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- private String wxOrderSn;
- private String merchOrderId;
- private String orderSn;
- private String wxOrderId;
- private String merchSn;
- private String merchName;
- private String platSn;
- private String platName;
- private String thirdPartyMerchCode;
- private String thirdPartyMerchName;
- private Date placeOrderlTime;
- private String autoSend;
- private String buyerRegNo;
- private Date buyerBillTime;
- private String buyerIdType;
- private String buyerIdCode;
- private String buyerName;
- private String buyerTel;
- private String consigneeIdType;
- private String consigneeIdCode;
- private String consigneeName;
- private String consigneeMob;
- private String consigneeTel;
- private String consigneeCountryCode;
- private String consigneeProvinceCode;
- private String consigneeProvince;
- private String consigneeCityCode;
- private String consigneeCity;
- private String consigneeDistrictCode;
- private String consigneeDistrict;
- private String consigneeAddress;
- private String consigneeZipCode;
- private String payerName;
- private String payerIdType;
- private String payerIdCode;
- private String payerMob;
- private String payEntCusCode;
- private String payNo;
- private BigDecimal goodsValue;
- private BigDecimal freight;
- private BigDecimal discount;
- private BigDecimal taxTotal;
- private BigDecimal acturalPaid;
- private Date payTime;
- private String exprType;
- private String exprCompId;
- private BigDecimal declExprFee;
- private String batchNumbers;
- private BigDecimal declPostTax;
- private String shopId;
- private String extraTag;
- private String currencyCode;
- private String wsFlag;
- private String buyerPayCheck;
- private String wxOrderDetail;
- private String clecOrderStatus;
- private String wayOrderStatus;
- private String projectCheckStatus;
- private String playOrderStatus;
- private String remark;
- private String createrSn;
- private Date createTime;
- private String moderSn;
- private Date modTime;
- private Date tstm;
- private String exField;
- private String exField2;
- private String exField3;
- private String exField4;
- private String exField5;
- private String exprAgreementType;
- private String placeOrderlTimeStr;
- public String getPlaceOrderlTimeStr() {
- return placeOrderlTimeStr;
- }
- public void setPlaceOrderlTimeStr(String placeOrderlTimeStr) {
- this.placeOrderlTimeStr = placeOrderlTimeStr;
- }
- public String getExprAgreementType() {
- return exprAgreementType;
- }
- public void setExprAgreementType(String exprAgreementType) {
- this.exprAgreementType = exprAgreementType;
- }
- public String getWxOrderSn() {
- return wxOrderSn;
- }
- public void setWxOrderSn(String wxOrderSn) {
- this.wxOrderSn = wxOrderSn == null ? null : wxOrderSn.trim();
- }
- public String getMerchOrderId() {
- return merchOrderId;
- }
- public void setMerchOrderId(String merchOrderId) {
- this.merchOrderId = merchOrderId == null ? null : merchOrderId.trim();
- }
- public String getOrderSn() {
- return orderSn;
- }
- public void setOrderSn(String orderSn) {
- this.orderSn = orderSn == null ? null : orderSn.trim();
- }
- public String getWxOrderId() {
- return wxOrderId;
- }
- public void setWxOrderId(String wxOrderId) {
- this.wxOrderId = wxOrderId == null ? null : wxOrderId.trim();
- }
- public String getMerchSn() {
- return merchSn;
- }
- public void setMerchSn(String merchSn) {
- this.merchSn = merchSn == null ? null : merchSn.trim();
- }
- public String getMerchName() {
- return merchName;
- }
- public void setMerchName(String merchName) {
- this.merchName = merchName == null ? null : merchName.trim();
- }
- public String getPlatSn() {
- return platSn;
- }
- public void setPlatSn(String platSn) {
- this.platSn = platSn == null ? null : platSn.trim();
- }
- public String getPlatName() {
- return platName;
- }
- public void setPlatName(String platName) {
- this.platName = platName == null ? null : platName.trim();
- }
- public String getThirdPartyMerchCode() {
- return thirdPartyMerchCode;
- }
- public void setThirdPartyMerchCode(String thirdPartyMerchCode) {
- this.thirdPartyMerchCode = thirdPartyMerchCode == null ? null : thirdPartyMerchCode.trim();
- }
- public String getThirdPartyMerchName() {
- return thirdPartyMerchName;
- }
- public void setThirdPartyMerchName(String thirdPartyMerchName) {
- this.thirdPartyMerchName = thirdPartyMerchName == null ? null : thirdPartyMerchName.trim();
- }
- public Date getPlaceOrderlTime() {
- return placeOrderlTime;
- }
- public void setPlaceOrderlTime(Date placeOrderlTime) {
- this.placeOrderlTime = placeOrderlTime;
- }
- public String getAutoSend() {
- return autoSend;
- }
- public void setAutoSend(String autoSend) {
- this.autoSend = autoSend == null ? null : autoSend.trim();
- }
- public String getBuyerRegNo() {
- return buyerRegNo;
- }
- public void setBuyerRegNo(String buyerRegNo) {
- this.buyerRegNo = buyerRegNo == null ? null : buyerRegNo.trim();
- }
- public Date getBuyerBillTime() {
- return buyerBillTime;
- }
- public void setBuyerBillTime(Date buyerBillTime) {
- this.buyerBillTime = buyerBillTime;
- }
- public String getBuyerIdType() {
- return buyerIdType;
- }
- public void setBuyerIdType(String buyerIdType) {
- this.buyerIdType = buyerIdType == null ? null : buyerIdType.trim();
- }
- public String getBuyerIdCode() {
- return buyerIdCode;
- }
- public void setBuyerIdCode(String buyerIdCode) {
- this.buyerIdCode = buyerIdCode == null ? null : buyerIdCode.trim();
- }
- public String getBuyerName() {
- return buyerName;
- }
- public void setBuyerName(String buyerName) {
- this.buyerName = buyerName == null ? null : buyerName.trim();
- }
- public String getBuyerTel() {
- return buyerTel;
- }
- public void setBuyerTel(String buyerTel) {
- this.buyerTel = buyerTel == null ? null : buyerTel.trim();
- }
- public String getConsigneeIdType() {
- return consigneeIdType;
- }
- public void setConsigneeIdType(String consigneeIdType) {
- this.consigneeIdType = consigneeIdType == null ? null : consigneeIdType.trim();
- }
- public String getConsigneeIdCode() {
- return consigneeIdCode;
- }
- public void setConsigneeIdCode(String consigneeIdCode) {
- this.consigneeIdCode = consigneeIdCode == null ? null : consigneeIdCode.trim();
- }
- public String getConsigneeName() {
- return consigneeName;
- }
- public void setConsigneeName(String consigneeName) {
- this.consigneeName = consigneeName == null ? null : consigneeName.trim();
- }
- public String getConsigneeMob() {
- return consigneeMob;
- }
- public void setConsigneeMob(String consigneeMob) {
- this.consigneeMob = consigneeMob == null ? null : consigneeMob.trim();
- }
- public String getConsigneeTel() {
- return consigneeTel;
- }
- public void setConsigneeTel(String consigneeTel) {
- this.consigneeTel = consigneeTel == null ? null : consigneeTel.trim();
- }
- public String getConsigneeCountryCode() {
- return consigneeCountryCode;
- }
- public void setConsigneeCountryCode(String consigneeCountryCode) {
- this.consigneeCountryCode = consigneeCountryCode == null ? null : consigneeCountryCode.trim();
- }
- public String getConsigneeProvinceCode() {
- return consigneeProvinceCode;
- }
- public void setConsigneeProvinceCode(String consigneeProvinceCode) {
- this.consigneeProvinceCode = consigneeProvinceCode == null ? null : consigneeProvinceCode.trim();
- }
- public String getConsigneeProvince() {
- return consigneeProvince;
- }
- public void setConsigneeProvince(String consigneeProvince) {
- this.consigneeProvince = consigneeProvince == null ? null : consigneeProvince.trim();
- }
- public String getConsigneeCityCode() {
- return consigneeCityCode;
- }
- public void setConsigneeCityCode(String consigneeCityCode) {
- this.consigneeCityCode = consigneeCityCode == null ? null : consigneeCityCode.trim();
- }
- public String getConsigneeCity() {
- return consigneeCity;
- }
- public void setConsigneeCity(String consigneeCity) {
- this.consigneeCity = consigneeCity == null ? null : consigneeCity.trim();
- }
- public String getConsigneeDistrictCode() {
- return consigneeDistrictCode;
- }
- public void setConsigneeDistrictCode(String consigneeDistrictCode) {
- this.consigneeDistrictCode = consigneeDistrictCode == null ? null : consigneeDistrictCode.trim();
- }
- public String getConsigneeDistrict() {
- return consigneeDistrict;
- }
- public void setConsigneeDistrict(String consigneeDistrict) {
- this.consigneeDistrict = consigneeDistrict == null ? null : consigneeDistrict.trim();
- }
- public String getConsigneeAddress() {
- return consigneeAddress;
- }
- public void setConsigneeAddress(String consigneeAddress) {
- this.consigneeAddress = consigneeAddress == null ? null : consigneeAddress.trim();
- }
- public String getConsigneeZipCode() {
- return consigneeZipCode;
- }
- public void setConsigneeZipCode(String consigneeZipCode) {
- this.consigneeZipCode = consigneeZipCode == null ? null : consigneeZipCode.trim();
- }
- public String getPayerName() {
- return payerName;
- }
- public void setPayerName(String payerName) {
- this.payerName = payerName == null ? null : payerName.trim();
- }
- public String getPayerIdType() {
- return payerIdType;
- }
- public void setPayerIdType(String payerIdType) {
- this.payerIdType = payerIdType == null ? null : payerIdType.trim();
- }
- public String getPayerIdCode() {
- return payerIdCode;
- }
- public void setPayerIdCode(String payerIdCode) {
- this.payerIdCode = payerIdCode == null ? null : payerIdCode.trim();
- }
- public String getPayerMob() {
- return payerMob;
- }
- public void setPayerMob(String payerMob) {
- this.payerMob = payerMob == null ? null : payerMob.trim();
- }
- public String getPayEntCusCode() {
- return payEntCusCode;
- }
- public void setPayEntCusCode(String payEntCusCode) {
- this.payEntCusCode = payEntCusCode == null ? null : payEntCusCode.trim();
- }
- public String getPayNo() {
- return payNo;
- }
- public void setPayNo(String payNo) {
- this.payNo = payNo == null ? null : payNo.trim();
- }
- public BigDecimal getGoodsValue() {
- return goodsValue;
- }
- public void setGoodsValue(BigDecimal goodsValue) {
- this.goodsValue = goodsValue;
- }
- public BigDecimal getFreight() {
- return freight;
- }
- public void setFreight(BigDecimal freight) {
- this.freight = freight;
- }
- public BigDecimal getDiscount() {
- return discount;
- }
- public void setDiscount(BigDecimal discount) {
- this.discount = discount;
- }
- public BigDecimal getTaxTotal() {
- return taxTotal;
- }
- public void setTaxTotal(BigDecimal taxTotal) {
- this.taxTotal = taxTotal;
- }
- public BigDecimal getActuralPaid() {
- return acturalPaid;
- }
- public void setActuralPaid(BigDecimal acturalPaid) {
- this.acturalPaid = acturalPaid;
- }
- public Date getPayTime() {
- return payTime;
- }
- public void setPayTime(Date payTime) {
- this.payTime = payTime;
- }
- public String getExprType() {
- return exprType;
- }
- public void setExprType(String exprType) {
- this.exprType = exprType == null ? null : exprType.trim();
- }
- public String getExprCompId() {
- return exprCompId;
- }
- public void setExprCompId(String exprCompId) {
- this.exprCompId = exprCompId == null ? null : exprCompId.trim();
- }
- public BigDecimal getDeclExprFee() {
- return declExprFee;
- }
- public void setDeclExprFee(BigDecimal declExprFee) {
- this.declExprFee = declExprFee;
- }
- public String getBatchNumbers() {
- return batchNumbers;
- }
- public void setBatchNumbers(String batchNumbers) {
- this.batchNumbers = batchNumbers == null ? null : batchNumbers.trim();
- }
- public BigDecimal getDeclPostTax() {
- return declPostTax;
- }
- public void setDeclPostTax(BigDecimal declPostTax) {
- this.declPostTax = declPostTax;
- }
- public String getShopId() {
- return shopId;
- }
- public void setShopId(String shopId) {
- this.shopId = shopId == null ? null : shopId.trim();
- }
- public String getExtraTag() {
- return extraTag;
- }
- public void setExtraTag(String extraTag) {
- this.extraTag = extraTag == null ? null : extraTag.trim();
- }
- public String getCurrencyCode() {
- return currencyCode;
- }
- public void setCurrencyCode(String currencyCode) {
- this.currencyCode = currencyCode == null ? null : currencyCode.trim();
- }
- public String getWsFlag() {
- return wsFlag;
- }
- public void setWsFlag(String wsFlag) {
- this.wsFlag = wsFlag == null ? null : wsFlag.trim();
- }
- public String getBuyerPayCheck() {
- return buyerPayCheck;
- }
- public void setBuyerPayCheck(String buyerPayCheck) {
- this.buyerPayCheck = buyerPayCheck;
- }
- public String getWxOrderDetail() {
- return wxOrderDetail;
- }
- public void setWxOrderDetail(String wxOrderDetail) {
- this.wxOrderDetail = wxOrderDetail;
- }
- public String getClecOrderStatus() {
- return clecOrderStatus;
- }
- public void setClecOrderStatus(String clecOrderStatus) {
- this.clecOrderStatus = clecOrderStatus == null ? null : clecOrderStatus.trim();
- }
- public String getWayOrderStatus() {
- return wayOrderStatus;
- }
- public void setWayOrderStatus(String wayOrderStatus) {
- this.wayOrderStatus = wayOrderStatus == null ? null : wayOrderStatus.trim();
- }
- public String getProjectCheckStatus() {
- return projectCheckStatus;
- }
- public void setProjectCheckStatus(String projectCheckStatus) {
- this.projectCheckStatus = projectCheckStatus == null ? null : projectCheckStatus.trim();
- }
- public String getPlayOrderStatus() {
- return playOrderStatus;
- }
- public void setPlayOrderStatus(String playOrderStatus) {
- this.playOrderStatus = playOrderStatus == null ? null : playOrderStatus.trim();
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
- public String getCreaterSn() {
- return createrSn;
- }
- public void setCreaterSn(String createrSn) {
- this.createrSn = createrSn == null ? null : createrSn.trim();
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getModerSn() {
- return moderSn;
- }
- public void setModerSn(String moderSn) {
- this.moderSn = moderSn == null ? null : moderSn.trim();
- }
- public Date getModTime() {
- return modTime;
- }
- public void setModTime(Date modTime) {
- this.modTime = modTime;
- }
- public Date getTstm() {
- return tstm;
- }
- public void setTstm(Date tstm) {
- this.tstm = tstm;
- }
- public String getExField() {
- return exField;
- }
- public void setExField(String exField) {
- this.exField = exField == null ? null : exField.trim();
- }
- public String getExField2() {
- return exField2;
- }
- public void setExField2(String exField2) {
- this.exField2 = exField2 == null ? null : exField2.trim();
- }
- public String getExField3() {
- return exField3;
- }
- public void setExField3(String exField3) {
- this.exField3 = exField3 == null ? null : exField3.trim();
- }
- public String getExField4() {
- return exField4;
- }
- public void setExField4(String exField4) {
- this.exField4 = exField4 == null ? null : exField4.trim();
- }
- public String getExField5() {
- return exField5;
- }
- public void setExField5(String exField5) {
- this.exField5 = exField5 == null ? null : exField5.trim();
- }
- }
|