|
@@ -2,10 +2,12 @@ package com.caimei.modules.order.entity;
|
|
|
|
|
|
import com.caimei.modules.club.entity.CmProductSn;
|
|
import com.caimei.modules.club.entity.CmProductSn;
|
|
import com.caimei.utils.AppUtils;
|
|
import com.caimei.utils.AppUtils;
|
|
|
|
+import lombok.Data;
|
|
|
|
|
|
import java.beans.Transient;
|
|
import java.beans.Transient;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
+@Data
|
|
public class NewOrderProduct {
|
|
public class NewOrderProduct {
|
|
private Integer orderProductID;// int(11) not null auto_increment,
|
|
private Integer orderProductID;// int(11) not null auto_increment,
|
|
private Integer shopOrderID;// int(11) comment '子订单Id',
|
|
private Integer shopOrderID;// int(11) comment '子订单Id',
|
|
@@ -17,8 +19,6 @@ public class NewOrderProduct {
|
|
private Integer presentNum;// int(11) comment '赠送数量',
|
|
private Integer presentNum;// int(11) comment '赠送数量',
|
|
private String outStoreType;// char(1) comment '出库类型',
|
|
private String outStoreType;// char(1) comment '出库类型',
|
|
private Integer skuID;// int(11) comment 'skuId',
|
|
private Integer skuID;// int(11) comment 'skuId',
|
|
- private String props;// national varchar(1000) comment 'sku属性',
|
|
|
|
- private String propName;// national varchar(1000) comment '属性名',
|
|
|
|
private String productNo;// national varchar(50) comment '商品编号',
|
|
private String productNo;// national varchar(50) comment '商品编号',
|
|
private Double price;// float comment '订单商品购买价格',
|
|
private Double price;// float comment '订单商品购买价格',
|
|
private Double shopProductAmount; // 商品费 = 成本价快照 * (购买数量 + 赠品数量)
|
|
private Double shopProductAmount; // 商品费 = 成本价快照 * (购买数量 + 赠品数量)
|
|
@@ -37,9 +37,6 @@ public class NewOrderProduct {
|
|
private Double singleOtherFee;// decimal(20,6) comment '单个应付第三方金额',
|
|
private Double singleOtherFee;// decimal(20,6) comment '单个应付第三方金额',
|
|
private Double singleCmFee;// decimal(20,6) comment '单个应付采美金额',
|
|
private Double singleCmFee;// decimal(20,6) comment '单个应付采美金额',
|
|
private Double shouldPayFee;// decimal(20,6) comment '应付金额',
|
|
private Double shouldPayFee;// decimal(20,6) comment '应付金额',
|
|
- private String commentFlag;// national char(1) comment '是否已评论:1是,空或0未评论',
|
|
|
|
- private Double price0;// float(10,2),
|
|
|
|
- private Double price1;// float comment '普通会员价',
|
|
|
|
private Double totalFee;// float comment '总价',
|
|
private Double totalFee;// float comment '总价',
|
|
private Double totalBeans;// decimal(10,2) comment '获取到的总采美豆值',
|
|
private Double totalBeans;// decimal(10,2) comment '获取到的总采美豆值',
|
|
private Double useBalanceAmount;// double comment '使用余额金额',notOutStore
|
|
private Double useBalanceAmount;// double comment '使用余额金额',notOutStore
|
|
@@ -73,7 +70,6 @@ public class NewOrderProduct {
|
|
private Integer outStoreTimes; // 发货批次
|
|
private Integer outStoreTimes; // 发货批次
|
|
private Double costPrice; // 成本价(快照商品成本价格)
|
|
private Double costPrice; // 成本价(快照商品成本价格)
|
|
private Integer stock; // 库存
|
|
private Integer stock; // 库存
|
|
- private Integer status; // 状态
|
|
|
|
private String logisticsBatchID; // 发货批次ID
|
|
private String logisticsBatchID; // 发货批次ID
|
|
//private List<NewCmFinanceCharge> newCmFinanceChargeList; //订单商品id对应的多个出账记录
|
|
//private List<NewCmFinanceCharge> newCmFinanceChargeList; //订单商品id对应的多个出账记录
|
|
//private List<NewCmFinanceReceipts> newCmFinanceReceiptsList; //订单商品id对应一个进账记录 订单id对应多个
|
|
//private List<NewCmFinanceReceipts> newCmFinanceReceiptsList; //订单商品id对应一个进账记录 订单id对应多个
|
|
@@ -97,684 +93,4 @@ public class NewOrderProduct {
|
|
private Double singleShouldPayTotalTax; //单个付供应商税费
|
|
private Double singleShouldPayTotalTax; //单个付供应商税费
|
|
private Integer frequency; //订单量
|
|
private Integer frequency; //订单量
|
|
private Integer totalNum; //销售量
|
|
private Integer totalNum; //销售量
|
|
-
|
|
|
|
- public Integer getOrderProductID() {
|
|
|
|
- return orderProductID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderProductID(Integer orderProductID) {
|
|
|
|
- this.orderProductID = orderProductID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getShopOrderID() {
|
|
|
|
- return shopOrderID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopOrderID(Integer shopOrderID) {
|
|
|
|
- this.shopOrderID = shopOrderID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getShopOrderNo() {
|
|
|
|
- return shopOrderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopOrderNo(String shopOrderNo) {
|
|
|
|
- this.shopOrderNo = shopOrderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getShopID() {
|
|
|
|
- return shopID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopID(Integer shopID) {
|
|
|
|
- this.shopID = shopID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getLedgerNo() {
|
|
|
|
- return ledgerNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setLedgerNo(String ledgerNo) {
|
|
|
|
- this.ledgerNo = ledgerNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getProductID() {
|
|
|
|
- return productID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProductID(Integer productID) {
|
|
|
|
- this.productID = productID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getNum() {
|
|
|
|
- return num;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setNum(Integer num) {
|
|
|
|
- this.num = num;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getPresentNum() {
|
|
|
|
- return presentNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPresentNum(Integer presentNum) {
|
|
|
|
- this.presentNum = presentNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOutStoreType() {
|
|
|
|
- return outStoreType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOutStoreType(String outStoreType) {
|
|
|
|
- this.outStoreType = outStoreType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getSkuID() {
|
|
|
|
- return skuID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSkuID(Integer skuID) {
|
|
|
|
- this.skuID = skuID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getProps() {
|
|
|
|
- return props;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProps(String props) {
|
|
|
|
- this.props = props;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPropName() {
|
|
|
|
- return propName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPropName(String propName) {
|
|
|
|
- this.propName = propName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getProductNo() {
|
|
|
|
- return productNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProductNo(String productNo) {
|
|
|
|
- this.productNo = productNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getPrice() {
|
|
|
|
- return price;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPrice(Double price) {
|
|
|
|
- this.price = price;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getShopProductAmount() {
|
|
|
|
- return shopProductAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopProductAmount(Double shopProductAmount) {
|
|
|
|
- this.shopProductAmount = shopProductAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getNormalPrice() {
|
|
|
|
- return normalPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setNormalPrice(Double normalPrice) {
|
|
|
|
- this.normalPrice = normalPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getTotalAmount() {
|
|
|
|
- return totalAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalAmount(Double totalAmount) {
|
|
|
|
- this.totalAmount = totalAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getDiscount() {
|
|
|
|
- return discount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setDiscount(Double discount) {
|
|
|
|
- this.discount = discount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getDiscountPrice() {
|
|
|
|
- return discountPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setDiscountPrice(Double discountPrice) {
|
|
|
|
- this.discountPrice = discountPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getTaxRate() {
|
|
|
|
- return taxRate;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTaxRate(Double taxRate) {
|
|
|
|
- this.taxRate = taxRate;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getAddedValueTax() {
|
|
|
|
- return addedValueTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAddedValueTax(Double addedValueTax) {
|
|
|
|
- this.addedValueTax = addedValueTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getTotalAddedValueTax() {
|
|
|
|
- return totalAddedValueTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalAddedValueTax(Double totalAddedValueTax) {
|
|
|
|
- this.totalAddedValueTax = totalAddedValueTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getShouldPayTotalTax() {
|
|
|
|
- return shouldPayTotalTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShouldPayTotalTax(Double shouldPayTotalTax) {
|
|
|
|
- this.shouldPayTotalTax = shouldPayTotalTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getShopFee() {
|
|
|
|
- return shopFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopFee(Double shopFee) {
|
|
|
|
- this.shopFee = shopFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getOtherFee() {
|
|
|
|
- return otherFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOtherFee(Double otherFee) {
|
|
|
|
- this.otherFee = otherFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getCmFee() {
|
|
|
|
- return cmFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCmFee(Double cmFee) {
|
|
|
|
- this.cmFee = cmFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getSingleShopFee() {
|
|
|
|
- return singleShopFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSingleShopFee(Double singleShopFee) {
|
|
|
|
- this.singleShopFee = singleShopFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getSingleOtherFee() {
|
|
|
|
- return singleOtherFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSingleOtherFee(Double singleOtherFee) {
|
|
|
|
- this.singleOtherFee = singleOtherFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getSingleCmFee() {
|
|
|
|
- return singleCmFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSingleCmFee(Double singleCmFee) {
|
|
|
|
- this.singleCmFee = singleCmFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getShouldPayFee() {
|
|
|
|
- return shouldPayFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShouldPayFee(Double shouldPayFee) {
|
|
|
|
- this.shouldPayFee = shouldPayFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCommentFlag() {
|
|
|
|
- return commentFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCommentFlag(String commentFlag) {
|
|
|
|
- this.commentFlag = commentFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getPrice0() {
|
|
|
|
- return price0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPrice0(Double price0) {
|
|
|
|
- this.price0 = price0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getPrice1() {
|
|
|
|
- return price1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPrice1(Double price1) {
|
|
|
|
- this.price1 = price1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getTotalFee() {
|
|
|
|
- return totalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalFee(Double totalFee) {
|
|
|
|
- this.totalFee = totalFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getTotalBeans() {
|
|
|
|
- return totalBeans;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalBeans(Double totalBeans) {
|
|
|
|
- this.totalBeans = totalBeans;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getUseBalanceAmount() {
|
|
|
|
- return useBalanceAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUseBalanceAmount(Double useBalanceAmount) {
|
|
|
|
- this.useBalanceAmount = useBalanceAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getUseBeanAmount() {
|
|
|
|
- return useBeanAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUseBeanAmount(Integer useBeanAmount) {
|
|
|
|
- this.useBeanAmount = useBeanAmount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getNotOutStore() {
|
|
|
|
- return notOutStore;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setNotOutStore(Integer notOutStore) {
|
|
|
|
- this.notOutStore = notOutStore;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getCmbeanPrice() {
|
|
|
|
- return cmbeanPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCmbeanPrice(Integer cmbeanPrice) {
|
|
|
|
- this.cmbeanPrice = cmbeanPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getIsGiftProduct() {
|
|
|
|
- return isGiftProduct;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setIsGiftProduct(String isGiftProduct) {
|
|
|
|
- this.isGiftProduct = isGiftProduct;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getProductActInfo() {
|
|
|
|
- return productActInfo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProductActInfo(String productActInfo) {
|
|
|
|
- this.productActInfo = productActInfo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getBuyAgainFlag() {
|
|
|
|
- return buyAgainFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBuyAgainFlag(String buyAgainFlag) {
|
|
|
|
- this.buyAgainFlag = buyAgainFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getConfirmProductFlag() {
|
|
|
|
- return confirmProductFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setConfirmProductFlag(String confirmProductFlag) {
|
|
|
|
- this.confirmProductFlag = confirmProductFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public NewShopOrder getNewShopOrder() {
|
|
|
|
- return newShopOrder;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setNewShopOrder(NewShopOrder newShopOrder) {
|
|
|
|
- this.newShopOrder = newShopOrder;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getShopFeeFlag() {
|
|
|
|
- return shopFeeFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopFeeFlag(String shopFeeFlag) {
|
|
|
|
- this.shopFeeFlag = shopFeeFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrderNo() {
|
|
|
|
- return orderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderNo(String orderNo) {
|
|
|
|
- this.orderNo = orderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getOrderID() {
|
|
|
|
- return orderID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderID(Integer orderID) {
|
|
|
|
- this.orderID = orderID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getShopName() {
|
|
|
|
- return shopName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopName(String shopName) {
|
|
|
|
- this.shopName = shopName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getName() {
|
|
|
|
- return name;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setName(String name) {
|
|
|
|
- this.name = name;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAliasName() {
|
|
|
|
- return aliasName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAliasName(String aliasName) {
|
|
|
|
- this.aliasName = aliasName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getUnit() {
|
|
|
|
- return unit;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUnit(String unit) {
|
|
|
|
- this.unit = unit;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPayStatus() {
|
|
|
|
- return payStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPayStatus(String payStatus) {
|
|
|
|
- this.payStatus = payStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getPreferential() {
|
|
|
|
- return preferential;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPreferential(Double preferential) {
|
|
|
|
- this.preferential = preferential;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getActPreferential() {
|
|
|
|
- return actPreferential;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setActPreferential(Double actPreferential) {
|
|
|
|
- this.actPreferential = actPreferential;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getImage() {
|
|
|
|
- return image;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setImage(String image) {
|
|
|
|
- this.image = image;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getDiscountFee() {
|
|
|
|
- return discountFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setDiscountFee(Double discountFee) {
|
|
|
|
- this.discountFee = discountFee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getProductUnit() {
|
|
|
|
- return productUnit;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProductUnit(String productUnit) {
|
|
|
|
- this.productUnit = productUnit;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getProductImage() {
|
|
|
|
- return productImage;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProductImage(String productImage) {
|
|
|
|
- this.productImage = productImage;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getShopFee1() {
|
|
|
|
- return shopFee1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setShopFee1(String shopFee1) {
|
|
|
|
- this.shopFee1 = shopFee1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOtherFee1() {
|
|
|
|
- return otherFee1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOtherFee1(String otherFee1) {
|
|
|
|
- this.otherFee1 = otherFee1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCmFee1() {
|
|
|
|
- return cmFee1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCmFee1(String cmFee1) {
|
|
|
|
- this.cmFee1 = cmFee1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getDeliveryNum() {
|
|
|
|
- return deliveryNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setDeliveryNum(Integer deliveryNum) {
|
|
|
|
- this.deliveryNum = deliveryNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getOutStoreTimes() {
|
|
|
|
- return outStoreTimes;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOutStoreTimes(Integer outStoreTimes) {
|
|
|
|
- this.outStoreTimes = outStoreTimes;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getCostPrice() {
|
|
|
|
- return costPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCostPrice(Double costPrice) {
|
|
|
|
- this.costPrice = costPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getStock() {
|
|
|
|
- return stock;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStock(Integer stock) {
|
|
|
|
- this.stock = stock;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getStatus() {
|
|
|
|
- return status;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStatus(Integer status) {
|
|
|
|
- this.status = status;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getLogisticsBatchID() {
|
|
|
|
- return logisticsBatchID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setLogisticsBatchID(String logisticsBatchID) {
|
|
|
|
- this.logisticsBatchID = logisticsBatchID;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSplitFlag() {
|
|
|
|
- return splitFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSplitFlag(String splitFlag) {
|
|
|
|
- this.splitFlag = splitFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCostCheckFlag() {
|
|
|
|
- return costCheckFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCostCheckFlag(String costCheckFlag) {
|
|
|
|
- this.costCheckFlag = costCheckFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getCostProportional() {
|
|
|
|
- return costProportional;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCostProportional(Double costProportional) {
|
|
|
|
- this.costProportional = costProportional;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public List<CmProductSn> getCmProductSnList() {
|
|
|
|
- return cmProductSnList;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCmProductSnList(List<CmProductSn> cmProductSnList) {
|
|
|
|
- this.cmProductSnList = cmProductSnList;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getConsignee() {
|
|
|
|
- return consignee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setConsignee(String consignee) {
|
|
|
|
- this.consignee = consignee;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getBuyer() {
|
|
|
|
- return buyer;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBuyer(String buyer) {
|
|
|
|
- this.buyer = buyer;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getThisTimePostNum() {
|
|
|
|
- return thisTimePostNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setThisTimePostNum(Integer thisTimePostNum) {
|
|
|
|
- this.thisTimePostNum = thisTimePostNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getReturnedPurchaseProductNum() {
|
|
|
|
- return returnedPurchaseProductNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReturnedPurchaseProductNum(Integer returnedPurchaseProductNum) {
|
|
|
|
- this.returnedPurchaseProductNum = returnedPurchaseProductNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getReturningPurchaseProductNum() {
|
|
|
|
- return returningPurchaseProductNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReturningPurchaseProductNum(Integer returningPurchaseProductNum) {
|
|
|
|
- this.returningPurchaseProductNum = returningPurchaseProductNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getCancelProductNum() {
|
|
|
|
- return cancelProductNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCancelProductNum(Integer cancelProductNum) {
|
|
|
|
- this.cancelProductNum = cancelProductNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getReceivedNum() {
|
|
|
|
- return receivedNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReceivedNum(Integer receivedNum) {
|
|
|
|
- this.receivedNum = receivedNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getReturningNum() {
|
|
|
|
- return returningNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReturningNum(Integer returningNum) {
|
|
|
|
- this.returningNum = returningNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getReturnedNum() {
|
|
|
|
- return returnedNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setReturnedNum(Integer returnedNum) {
|
|
|
|
- this.returnedNum = returnedNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Boolean getFirstReturn() {
|
|
|
|
- return firstReturn;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFirstReturn(Boolean firstReturn) {
|
|
|
|
- this.firstReturn = firstReturn;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getNewCostPrice() {
|
|
|
|
- return newCostPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setNewCostPrice(Double newCostPrice) {
|
|
|
|
- this.newCostPrice = newCostPrice;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getSingleShouldPayTotalTax() {
|
|
|
|
- return singleShouldPayTotalTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSingleShouldPayTotalTax(Double singleShouldPayTotalTax) {
|
|
|
|
- this.singleShouldPayTotalTax = singleShouldPayTotalTax;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getFrequency() {
|
|
|
|
- return frequency;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFrequency(Integer frequency) {
|
|
|
|
- this.frequency = frequency;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getTotalNum() {
|
|
|
|
- return totalNum;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTotalNum(Integer totalNum) {
|
|
|
|
- this.totalNum = totalNum;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|