|
@@ -1,5 +1,7 @@
|
|
package com.caimei.modules.order.entity;
|
|
package com.caimei.modules.order.entity;
|
|
|
|
|
|
|
|
+import lombok.Data;
|
|
|
|
+
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
@@ -8,6 +10,7 @@ import java.util.List;
|
|
* @date 2018-07-24
|
|
* @date 2018-07-24
|
|
* @description 主订单表
|
|
* @description 主订单表
|
|
*/
|
|
*/
|
|
|
|
+@Data
|
|
public class NewOrder implements Serializable {
|
|
public class NewOrder implements Serializable {
|
|
private Integer orderID; // bigint(11) not null,
|
|
private Integer orderID; // bigint(11) not null,
|
|
private String orderNo; // varchar(30) comment '订单编号',
|
|
private String orderNo; // varchar(30) comment '订单编号',
|
|
@@ -98,669 +101,5 @@ public class NewOrder implements Serializable {
|
|
private String[] ps; //付款状态集合
|
|
private String[] ps; //付款状态集合
|
|
private String shopOrderNo;// varchar(30) comment '子订单编号'
|
|
private String shopOrderNo;// varchar(30) comment '子订单编号'
|
|
private String toAudit; //有没有收款待审核的订单 , 有的1
|
|
private String toAudit; //有没有收款待审核的订单 , 有的1
|
|
-
|
|
|
|
- public Integer getOrderID() {
|
|
|
|
- return orderID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderID(Integer orderID) {
|
|
|
|
- this.orderID = orderID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrderNo() {
|
|
|
|
- return orderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderNo(String orderNo) {
|
|
|
|
- this.orderNo = orderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getUserID() {
|
|
|
|
- return userID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUserID(Integer userID) {
|
|
|
|
- this.userID = userID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getOrganizeID() {
|
|
|
|
- return organizeID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrganizeID(Integer organizeID) {
|
|
|
|
- this.organizeID = organizeID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getShopOrderIDs() {
|
|
|
|
- return shopOrderIDs;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopOrderIDs(String shopOrderIDs) {
|
|
|
|
- this.shopOrderIDs = shopOrderIDs;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrderSubmitType() {
|
|
|
|
- return orderSubmitType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderSubmitType(String orderSubmitType) {
|
|
|
|
- this.orderSubmitType = orderSubmitType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getStatus() {
|
|
|
|
- return status;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStatus(String status) {
|
|
|
|
- this.status = status;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getProductTotalFee() {
|
|
|
|
- return productTotalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProductTotalFee(Double productTotalFee) {
|
|
|
|
- this.productTotalFee = productTotalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getShouldPayProduct() {
|
|
|
|
- return shouldPayProduct;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShouldPayProduct(Double shouldPayProduct) {
|
|
|
|
- this.shouldPayProduct = shouldPayProduct;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getHasActProduct() {
|
|
|
|
- return hasActProduct;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setHasActProduct(String hasActProduct) {
|
|
|
|
- this.hasActProduct = hasActProduct;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getOrderTotalFee() {
|
|
|
|
- return orderTotalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderTotalFee(Double orderTotalFee) {
|
|
|
|
- this.orderTotalFee = orderTotalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getPayableAmount() {
|
|
|
|
- return payableAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayableAmount(Double payableAmount) {
|
|
|
|
- this.payableAmount = payableAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getPayTotalFee() {
|
|
|
|
- return payTotalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayTotalFee(Double payTotalFee) {
|
|
|
|
- this.payTotalFee = payTotalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getBalancePayFee() {
|
|
|
|
- return balancePayFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBalancePayFee(Double balancePayFee) {
|
|
|
|
- this.balancePayFee = balancePayFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getDiscountFee() {
|
|
|
|
- return discountFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setDiscountFee(Double discountFee) {
|
|
|
|
- this.discountFee = discountFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getSpID() {
|
|
|
|
- return spID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSpID(Integer spID) {
|
|
|
|
- this.spID = spID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getMainSpID() {
|
|
|
|
- return mainSpID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setMainSpID(Integer mainSpID) {
|
|
|
|
- this.mainSpID = mainSpID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getNote() {
|
|
|
|
- return note;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setNote(String note) {
|
|
|
|
- this.note = note;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getClubID() {
|
|
|
|
- return clubID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setClubID(Integer clubID) {
|
|
|
|
- this.clubID = clubID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getClubScanTime() {
|
|
|
|
- return clubScanTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setClubScanTime(String clubScanTime) {
|
|
|
|
- this.clubScanTime = clubScanTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPayWay() {
|
|
|
|
- return payWay;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayWay(String payWay) {
|
|
|
|
- this.payWay = payWay;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getPayTypeID() {
|
|
|
|
- return payTypeID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayTypeID(Integer payTypeID) {
|
|
|
|
- this.payTypeID = payTypeID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrderSource() {
|
|
|
|
- return orderSource;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderSource(String orderSource) {
|
|
|
|
- this.orderSource = orderSource;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrderTime() {
|
|
|
|
- return orderTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderTime(String orderTime) {
|
|
|
|
- this.orderTime = orderTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getConfirmTime() {
|
|
|
|
- return confirmTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setConfirmTime(String confirmTime) {
|
|
|
|
- this.confirmTime = confirmTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCooFreeFlag() {
|
|
|
|
- return cooFreeFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCooFreeFlag(String cooFreeFlag) {
|
|
|
|
- this.cooFreeFlag = cooFreeFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getCooFreeRate() {
|
|
|
|
- return cooFreeRate;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCooFreeRate(Integer cooFreeRate) {
|
|
|
|
- this.cooFreeRate = cooFreeRate;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getCooFreeAmount() {
|
|
|
|
- return cooFreeAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCooFreeAmount(Double cooFreeAmount) {
|
|
|
|
- this.cooFreeAmount = cooFreeAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getConfirmFlag() {
|
|
|
|
- return confirmFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setConfirmFlag(String confirmFlag) {
|
|
|
|
- this.confirmFlag = confirmFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getClauseID() {
|
|
|
|
- return clauseID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setClauseID(Integer clauseID) {
|
|
|
|
- this.clauseID = clauseID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getClauseContent() {
|
|
|
|
- return clauseContent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setClauseContent(String clauseContent) {
|
|
|
|
- this.clauseContent = clauseContent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getClauseName() {
|
|
|
|
- return clauseName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setClauseName(String clauseName) {
|
|
|
|
- this.clauseName = clauseName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getFreePostFlag() {
|
|
|
|
- return freePostFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFreePostFlag(String freePostFlag) {
|
|
|
|
- this.freePostFlag = freePostFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getFreight() {
|
|
|
|
- return freight;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFreight(Double freight) {
|
|
|
|
- this.freight = freight;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getBuyUserID() {
|
|
|
|
- return buyUserID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBuyUserID(Integer buyUserID) {
|
|
|
|
- this.buyUserID = buyUserID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrderType() {
|
|
|
|
- return orderType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderType(String orderType) {
|
|
|
|
- this.orderType = orderType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public List<NewShopOrder> getNewShopOrders() {
|
|
|
|
- return newShopOrders;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setNewShopOrders(List<NewShopOrder> newShopOrders) {
|
|
|
|
- this.newShopOrders = newShopOrders;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public OrderUserInfo getBpOrderUserinfo() {
|
|
|
|
- return bpOrderUserinfo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBpOrderUserinfo(OrderUserInfo bpOrderUserinfo) {
|
|
|
|
- this.bpOrderUserinfo = bpOrderUserinfo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public OrderInvoice getOrderInvoice() {
|
|
|
|
- return orderInvoice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderInvoice(OrderInvoice orderInvoice) {
|
|
|
|
- this.orderInvoice = orderInvoice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getProductCount() {
|
|
|
|
- return productCount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProductCount(Integer productCount) {
|
|
|
|
- this.productCount = productCount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getPresentCount() {
|
|
|
|
- return presentCount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPresentCount(Integer presentCount) {
|
|
|
|
- this.presentCount = presentCount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPayTime() {
|
|
|
|
- return payTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayTime(String payTime) {
|
|
|
|
- this.payTime = payTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPayFlag() {
|
|
|
|
- return payFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayFlag(String payFlag) {
|
|
|
|
- this.payFlag = payFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOnlinePayFlag() {
|
|
|
|
- return onlinePayFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOnlinePayFlag(String onlinePayFlag) {
|
|
|
|
- this.onlinePayFlag = onlinePayFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getPreferential() {
|
|
|
|
- return preferential;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPreferential(Double preferential) {
|
|
|
|
- this.preferential = preferential;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSplitFlag() {
|
|
|
|
- return splitFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSplitFlag(String splitFlag) {
|
|
|
|
- this.splitFlag = splitFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCloseReason() {
|
|
|
|
- return closeReason;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCloseReason(String closeReason) {
|
|
|
|
- this.closeReason = closeReason;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getInvoiceFlag() {
|
|
|
|
- return invoiceFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setInvoiceFlag(String invoiceFlag) {
|
|
|
|
- this.invoiceFlag = invoiceFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getReceiptStatus() {
|
|
|
|
- return receiptStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReceiptStatus(String receiptStatus) {
|
|
|
|
- this.receiptStatus = receiptStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPayStatus() {
|
|
|
|
- return payStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayStatus(String payStatus) {
|
|
|
|
- this.payStatus = payStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSendOutStatus() {
|
|
|
|
- return sendOutStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSendOutStatus(String sendOutStatus) {
|
|
|
|
- this.sendOutStatus = sendOutStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getRefundType() {
|
|
|
|
- return refundType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setRefundType(String refundType) {
|
|
|
|
- this.refundType = refundType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPostageOrderFlag() {
|
|
|
|
- return postageOrderFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPostageOrderFlag(String postageOrderFlag) {
|
|
|
|
- this.postageOrderFlag = postageOrderFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getPaidAmount() {
|
|
|
|
- return paidAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPaidAmount(Double paidAmount) {
|
|
|
|
- this.paidAmount = paidAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getTotalDiscount() {
|
|
|
|
- return totalDiscount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalDiscount(Double totalDiscount) {
|
|
|
|
- this.totalDiscount = totalDiscount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getShopName() {
|
|
|
|
- return shopName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopName(String shopName) {
|
|
|
|
- this.shopName = shopName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getReceiver() {
|
|
|
|
- return receiver;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReceiver(String receiver) {
|
|
|
|
- this.receiver = receiver;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getBuyer() {
|
|
|
|
- return buyer;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBuyer(String buyer) {
|
|
|
|
- this.buyer = buyer;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAlreadyReceipt() {
|
|
|
|
- return alreadyReceipt;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAlreadyReceipt(String alreadyReceipt) {
|
|
|
|
- this.alreadyReceipt = alreadyReceipt;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getUnReceipt() {
|
|
|
|
- return unReceipt;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUnReceipt(String unReceipt) {
|
|
|
|
- this.unReceipt = unReceipt;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPaid() {
|
|
|
|
- return paid;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPaid(String paid) {
|
|
|
|
- this.paid = paid;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getUnpaid() {
|
|
|
|
- return unpaid;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUnpaid(String unpaid) {
|
|
|
|
- this.unpaid = unpaid;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getBrokerage() {
|
|
|
|
- return brokerage;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBrokerage(String brokerage) {
|
|
|
|
- this.brokerage = brokerage;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getBuyerName() {
|
|
|
|
- return buyerName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBuyerName(String buyerName) {
|
|
|
|
- this.buyerName = buyerName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getMobile() {
|
|
|
|
- return mobile;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setMobile(String mobile) {
|
|
|
|
- this.mobile = mobile;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAddress() {
|
|
|
|
- return address;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAddress(String address) {
|
|
|
|
- this.address = address;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getStartTime() {
|
|
|
|
- return startTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStartTime(String startTime) {
|
|
|
|
- this.startTime = startTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getEndTime() {
|
|
|
|
- return endTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setEndTime(String endTime) {
|
|
|
|
- this.endTime = endTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getStartRefundTime() {
|
|
|
|
- return startRefundTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStartRefundTime(String startRefundTime) {
|
|
|
|
- this.startRefundTime = startRefundTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getEndRefundTime() {
|
|
|
|
- return endRefundTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setEndRefundTime(String endRefundTime) {
|
|
|
|
- this.endRefundTime = endRefundTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getTotalAddedValueTax() {
|
|
|
|
- return totalAddedValueTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalAddedValueTax(Double totalAddedValueTax) {
|
|
|
|
- this.totalAddedValueTax = totalAddedValueTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getShopNameInfo() {
|
|
|
|
- return shopNameInfo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopNameInfo(String shopNameInfo) {
|
|
|
|
- this.shopNameInfo = shopNameInfo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrderRefundType() {
|
|
|
|
- return orderRefundType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderRefundType(String orderRefundType) {
|
|
|
|
- this.orderRefundType = orderRefundType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getReturnedPurchaseStatus() {
|
|
|
|
- return returnedPurchaseStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReturnedPurchaseStatus(String returnedPurchaseStatus) {
|
|
|
|
- this.returnedPurchaseStatus = returnedPurchaseStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getApplyReturnedPurchaseFlag() {
|
|
|
|
- return applyReturnedPurchaseFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setApplyReturnedPurchaseFlag(String applyReturnedPurchaseFlag) {
|
|
|
|
- this.applyReturnedPurchaseFlag = applyReturnedPurchaseFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSpName() {
|
|
|
|
- return spName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSpName(String spName) {
|
|
|
|
- this.spName = spName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public List<NewOrderProduct> getOrderProduct() {
|
|
|
|
- return orderProduct;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderProduct(List<NewOrderProduct> orderProduct) {
|
|
|
|
- this.orderProduct = orderProduct;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSearchflag() {
|
|
|
|
- return searchflag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSearchflag(String searchflag) {
|
|
|
|
- this.searchflag = searchflag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String[] getShopNote() {
|
|
|
|
- return shopNote;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopNote(String[] shopNote) {
|
|
|
|
- this.shopNote = shopNote;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getRebateOrder() {
|
|
|
|
- return rebateOrder;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setRebateOrder(String rebateOrder) {
|
|
|
|
- this.rebateOrder = rebateOrder;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String[] getPs() {
|
|
|
|
- return ps;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPs(String[] ps) {
|
|
|
|
- this.ps = ps;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getShopOrderNo() {
|
|
|
|
- return shopOrderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopOrderNo(String shopOrderNo) {
|
|
|
|
- this.shopOrderNo = shopOrderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getToAudit() {
|
|
|
|
- return toAudit;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setToAudit(String toAudit) {
|
|
|
|
- this.toAudit = toAudit;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
|