|
@@ -2,72 +2,77 @@ package com.caimei.modules.bulkpurchase.entity;
|
|
|
|
|
|
import com.caimei.modules.product.entity.CmPromotion;
|
|
|
import com.caimei.po.ProductLadderPrice;
|
|
|
-import org.hibernate.validator.constraints.Length;
|
|
|
-
|
|
|
import com.thinkgem.jeesite.common.persistence.DataEntity;
|
|
|
+import org.hibernate.validator.constraints.Length;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* 大宗采购商品信息Entity
|
|
|
+ *
|
|
|
* @author jiangjunwen
|
|
|
* @version 2017-03-28
|
|
|
*/
|
|
|
public class PurchaseProduct extends DataEntity<PurchaseProduct> {
|
|
|
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
- private String purchaseProductName; // 商品名称
|
|
|
- private String name; // 商品名称
|
|
|
- private String image;//商品图片
|
|
|
- private Long contractId; // 采购id
|
|
|
- private String productNo; // 商品编号
|
|
|
- private Long productId; // 商品ID
|
|
|
- private String shopName; // 供应商名称
|
|
|
- private String price; // 当前单价
|
|
|
- private String discount; // 折扣
|
|
|
- private String discountPrice; // 折后单价
|
|
|
- private String includedTax; //是否含税 0不含税 1含税 2未知
|
|
|
- private String invoiceType; //发票类型(基于是否含税基础) 1增值税专用发票 2增值税普通发票 3不能开票
|
|
|
- private String taxRate; // 机构税率
|
|
|
- private String supplierTaxRate; // 供应商税率
|
|
|
- private String addedValueTax; // 机构税费(单)
|
|
|
- private String singleShouldPayTotalTax; // 供应商税费(单)
|
|
|
- private String stipulateFlag; // 是否是规定商品 0否 1是
|
|
|
- private String shopId;
|
|
|
- private String shopFee; // 应付供应商金额
|
|
|
- private String cmFee; // 应付采美金额
|
|
|
- private String otherFee; // 应付第三方金额
|
|
|
- private String shopFee1; // 应付供应商金额(单个)
|
|
|
- private String cmFee1; // 应付采美金额(单个)
|
|
|
- private String otherFee1; // 应付第三方金额(单个)
|
|
|
- private List<ProductPrivilege> productPrivilege;
|
|
|
- private String flag;//区分选择商品页面,flag=1:直接生成订单中添加商品使用,没有值表示合同中添加商品使用
|
|
|
-
|
|
|
- private String num;//购买数量
|
|
|
- private String giveNum;//手动输入赠品数
|
|
|
- private String totalAddedValueTax;//总机构税费
|
|
|
- private String shouldPayTotalTax;//总供应商税费
|
|
|
- private String totalFee;//总费用
|
|
|
- private String buyAgainFlag;//订单商品再次购买标识 0否 1是
|
|
|
- private String costCheckFlag;//成本价选中标志:1固定成本 2比例成
|
|
|
- private String costPrice;//成本价
|
|
|
- private String costProportional;//比例成本百分比90%
|
|
|
- private String priceType; // 虚拟字段 协销帮个人用户下单的时候 priceType = normal 取普通用户价格
|
|
|
- private String normalPrice; //普通用户的价格
|
|
|
- private Integer userId;//用户Id
|
|
|
- private String buyAgainPriceFlag; // 商品是否使用复购价格购买标识 0否 1是
|
|
|
- private String productCategory;//商品的类别:1正常商品(默认),2二手商品
|
|
|
- private String secondHandType;//二手商品分类,1二手仪器,2临期产品,3其他
|
|
|
- private CmPromotion cmPromotion;//参与的促销活动
|
|
|
- private Integer ladderPriceFlag; // 启用阶梯价格标识 0否 1是
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+ private String purchaseProductName; // 商品名称
|
|
|
+ private String name; // 商品名称
|
|
|
+ private String image;//商品图片
|
|
|
+ private Long contractId; // 采购id
|
|
|
+ private String productNo; // 商品编号
|
|
|
+ private Long productId; // 商品ID
|
|
|
+ private String shopName; // 供应商名称
|
|
|
+ private String price; // 当前单价
|
|
|
+ private String discount; // 折扣
|
|
|
+ private String discountPrice; // 折后单价
|
|
|
+ private String includedTax; //是否含税 0不含税 1含税 2未知
|
|
|
+ private String invoiceType; //发票类型(基于是否含税基础) 1增值税专用发票 2增值税普通发票 3不能开票
|
|
|
+ private String taxRate; // 机构税率
|
|
|
+ private String supplierTaxRate; // 供应商税率
|
|
|
+ private String addedValueTax; // 机构税费(单)
|
|
|
+ private String singleShouldPayTotalTax; // 供应商税费(单)
|
|
|
+ private String stipulateFlag; // 是否是规定商品 0否 1是
|
|
|
+ private String shopId;
|
|
|
+ private String shopFee; // 应付供应商金额
|
|
|
+ private String cmFee; // 应付采美金额
|
|
|
+ private String otherFee; // 应付第三方金额
|
|
|
+ private String shopFee1; // 应付供应商金额(单个)
|
|
|
+ private String cmFee1; // 应付采美金额(单个)
|
|
|
+ private String otherFee1; // 应付第三方金额(单个)
|
|
|
+ private List<ProductPrivilege> productPrivilege;
|
|
|
+ private String flag;//区分选择商品页面,flag=1:直接生成订单中添加商品使用,没有值表示合同中添加商品使用
|
|
|
+
|
|
|
+ private String num;//购买数量
|
|
|
+ private String giveNum;//手动输入赠品数
|
|
|
+ private String totalAddedValueTax;//总机构税费
|
|
|
+ private String shouldPayTotalTax;//总供应商税费
|
|
|
+ private String totalFee;//总费用
|
|
|
+ private String buyAgainFlag;//订单商品再次购买标识 0否 1是
|
|
|
+ private String costCheckFlag;//成本价选中标志:1固定成本 2比例成
|
|
|
+ private String costPrice;//成本价
|
|
|
+ private String costProportional;//比例成本百分比90%
|
|
|
+ private String priceType; // 虚拟字段 协销帮个人用户下单的时候 priceType = normal 取普通用户价格
|
|
|
+ private String normalPrice; //普通用户的价格
|
|
|
+ private Integer userId;//用户Id
|
|
|
+ private String buyAgainPriceFlag; // 商品是否使用复购价格购买标识 0否 1是
|
|
|
+ private String productCategory;//商品的类别:1正常商品(默认),2二手商品
|
|
|
+ private String secondHandType;//二手商品分类,1二手仪器,2临期产品,3其他
|
|
|
+ private CmPromotion cmPromotion;//参与的促销活动
|
|
|
+ private Integer ladderPriceFlag; // 启用阶梯价格标识 0否 1是
|
|
|
private List<ProductLadderPrice> ladderPriceList;//阶梯价格列表
|
|
|
- private String oldProductFlag;//是否是旧商品 0否 1是
|
|
|
- public Integer getLadderPriceFlag() {
|
|
|
- return ladderPriceFlag;
|
|
|
- }
|
|
|
- public void setLadderPriceFlag(Integer ladderPriceFlag) {
|
|
|
- this.ladderPriceFlag = ladderPriceFlag;
|
|
|
- }
|
|
|
+ private String oldProductFlag;//是否是旧商品 0否 1是
|
|
|
+ private String commodityType; //商品属性:1产品,2仪器
|
|
|
+ private Integer couponsLogo; //显示优惠券查看: 1不显示 2显示
|
|
|
+
|
|
|
+ public Integer getLadderPriceFlag() {
|
|
|
+ return ladderPriceFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLadderPriceFlag(Integer ladderPriceFlag) {
|
|
|
+ this.ladderPriceFlag = ladderPriceFlag;
|
|
|
+ }
|
|
|
+
|
|
|
public List<ProductLadderPrice> getLadderPriceList() {
|
|
|
return ladderPriceList;
|
|
|
}
|
|
@@ -76,366 +81,381 @@ public class PurchaseProduct extends DataEntity<PurchaseProduct> {
|
|
|
this.ladderPriceList = ladderPriceList;
|
|
|
}
|
|
|
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
|
|
|
- public String getNum() {
|
|
|
- return num;
|
|
|
- }
|
|
|
+ public String getNum() {
|
|
|
+ return num;
|
|
|
+ }
|
|
|
|
|
|
- public void setNum(String num) {
|
|
|
- this.num = num;
|
|
|
- }
|
|
|
+ public void setNum(String num) {
|
|
|
+ this.num = num;
|
|
|
+ }
|
|
|
|
|
|
- public String getTotalFee() {
|
|
|
- return totalFee;
|
|
|
- }
|
|
|
+ public String getTotalFee() {
|
|
|
+ return totalFee;
|
|
|
+ }
|
|
|
|
|
|
- public void setTotalFee(String totalFee) {
|
|
|
- this.totalFee = totalFee;
|
|
|
- }
|
|
|
+ public void setTotalFee(String totalFee) {
|
|
|
+ this.totalFee = totalFee;
|
|
|
+ }
|
|
|
|
|
|
- public String getGiveNum() {
|
|
|
- return giveNum;
|
|
|
- }
|
|
|
+ public String getGiveNum() {
|
|
|
+ return giveNum;
|
|
|
+ }
|
|
|
|
|
|
- public void setGiveNum(String giveNum) {
|
|
|
- this.giveNum = giveNum;
|
|
|
- }
|
|
|
+ public void setGiveNum(String giveNum) {
|
|
|
+ this.giveNum = giveNum;
|
|
|
+ }
|
|
|
|
|
|
- public String getTotalAddedValueTax() {
|
|
|
- return totalAddedValueTax;
|
|
|
- }
|
|
|
+ public String getTotalAddedValueTax() {
|
|
|
+ return totalAddedValueTax;
|
|
|
+ }
|
|
|
|
|
|
- public void setTotalAddedValueTax(String totalAddedValueTax) {
|
|
|
- this.totalAddedValueTax = totalAddedValueTax;
|
|
|
- }
|
|
|
+ public void setTotalAddedValueTax(String totalAddedValueTax) {
|
|
|
+ this.totalAddedValueTax = totalAddedValueTax;
|
|
|
+ }
|
|
|
|
|
|
- public String getFlag() {
|
|
|
- return flag;
|
|
|
- }
|
|
|
+ public String getFlag() {
|
|
|
+ return flag;
|
|
|
+ }
|
|
|
|
|
|
- public void setFlag(String flag) {
|
|
|
- this.flag = flag;
|
|
|
- }
|
|
|
+ public void setFlag(String flag) {
|
|
|
+ this.flag = flag;
|
|
|
+ }
|
|
|
|
|
|
- public String getShopFee() {
|
|
|
- return shopFee;
|
|
|
- }
|
|
|
+ public String getShopFee() {
|
|
|
+ return shopFee;
|
|
|
+ }
|
|
|
|
|
|
- public void setShopFee(String shopFee) {
|
|
|
- this.shopFee = shopFee;
|
|
|
- }
|
|
|
+ public void setShopFee(String shopFee) {
|
|
|
+ this.shopFee = shopFee;
|
|
|
+ }
|
|
|
|
|
|
- public String getCmFee() {
|
|
|
- return cmFee;
|
|
|
- }
|
|
|
+ public String getCmFee() {
|
|
|
+ return cmFee;
|
|
|
+ }
|
|
|
|
|
|
- public void setCmFee(String cmFee) {
|
|
|
- this.cmFee = cmFee;
|
|
|
- }
|
|
|
+ public void setCmFee(String cmFee) {
|
|
|
+ this.cmFee = cmFee;
|
|
|
+ }
|
|
|
|
|
|
- public String getOtherFee() {
|
|
|
- return otherFee;
|
|
|
- }
|
|
|
+ public String getOtherFee() {
|
|
|
+ return otherFee;
|
|
|
+ }
|
|
|
|
|
|
- public void setOtherFee(String otherFee) {
|
|
|
- this.otherFee = otherFee;
|
|
|
- }
|
|
|
+ public void setOtherFee(String otherFee) {
|
|
|
+ this.otherFee = otherFee;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- public PurchaseProduct() {
|
|
|
- super();
|
|
|
- }
|
|
|
+ public PurchaseProduct() {
|
|
|
+ super();
|
|
|
+ }
|
|
|
|
|
|
- public PurchaseProduct(String id){
|
|
|
- super(id);
|
|
|
- }
|
|
|
+ public PurchaseProduct(String id) {
|
|
|
+ super(id);
|
|
|
+ }
|
|
|
|
|
|
- @Length(min=1, max=30, message="商品名称长度必须介于 1 和 30 之间")
|
|
|
- public String getPurchaseProductName() {
|
|
|
- return purchaseProductName;
|
|
|
- }
|
|
|
+ @Length(min = 1, max = 30, message = "商品名称长度必须介于 1 和 30 之间")
|
|
|
+ public String getPurchaseProductName() {
|
|
|
+ return purchaseProductName;
|
|
|
+ }
|
|
|
|
|
|
- public String getShopId() {
|
|
|
- return shopId;
|
|
|
- }
|
|
|
+ public String getShopId() {
|
|
|
+ return shopId;
|
|
|
+ }
|
|
|
|
|
|
- public void setShopId(String shopId) {
|
|
|
- this.shopId = shopId;
|
|
|
- }
|
|
|
+ public void setShopId(String shopId) {
|
|
|
+ this.shopId = shopId;
|
|
|
+ }
|
|
|
|
|
|
- public static long getSerialVersionUID() {
|
|
|
- return serialVersionUID;
|
|
|
- }
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
+ return serialVersionUID;
|
|
|
+ }
|
|
|
|
|
|
- public List<ProductPrivilege> getProductPrivilege() {
|
|
|
- return productPrivilege;
|
|
|
- }
|
|
|
+ public List<ProductPrivilege> getProductPrivilege() {
|
|
|
+ return productPrivilege;
|
|
|
+ }
|
|
|
|
|
|
- public void setProductPrivilege(List<ProductPrivilege> productPrivilege) {
|
|
|
- this.productPrivilege = productPrivilege;
|
|
|
- }
|
|
|
+ public void setProductPrivilege(List<ProductPrivilege> productPrivilege) {
|
|
|
+ this.productPrivilege = productPrivilege;
|
|
|
+ }
|
|
|
|
|
|
- public void setPurchaseProductName(String purchaseProductName) {
|
|
|
- this.purchaseProductName = purchaseProductName;
|
|
|
- }
|
|
|
+ public void setPurchaseProductName(String purchaseProductName) {
|
|
|
+ this.purchaseProductName = purchaseProductName;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
+ public Long getContractId() {
|
|
|
+ return contractId;
|
|
|
+ }
|
|
|
|
|
|
- public Long getContractId() {
|
|
|
- return contractId;
|
|
|
- }
|
|
|
+ public void setContractId(Long contractId) {
|
|
|
+ this.contractId = contractId;
|
|
|
+ }
|
|
|
|
|
|
- public void setContractId(Long contractId) {
|
|
|
- this.contractId = contractId;
|
|
|
- }
|
|
|
+ @Length(min = 0, max = 30, message = "商品编号长度必须介于 0 和 30 之间")
|
|
|
+ public String getProductNo() {
|
|
|
+ return productNo;
|
|
|
+ }
|
|
|
|
|
|
- @Length(min=0, max=30, message="商品编号长度必须介于 0 和 30 之间")
|
|
|
- public String getProductNo() {
|
|
|
- return productNo;
|
|
|
- }
|
|
|
+ public void setProductNo(String productNo) {
|
|
|
+ this.productNo = productNo;
|
|
|
+ }
|
|
|
|
|
|
- public void setProductNo(String productNo) {
|
|
|
- this.productNo = productNo;
|
|
|
- }
|
|
|
+ public Long getProductId() {
|
|
|
+ return productId;
|
|
|
+ }
|
|
|
|
|
|
- public Long getProductId() {
|
|
|
- return productId;
|
|
|
- }
|
|
|
+ public void setProductId(Long productId) {
|
|
|
+ this.productId = productId;
|
|
|
+ }
|
|
|
|
|
|
- public void setProductId(Long productId) {
|
|
|
- this.productId = productId;
|
|
|
- }
|
|
|
+ @Length(min = 0, max = 20, message = "供应商名称长度必须介于 0 和 20 之间")
|
|
|
+ public String getShopName() {
|
|
|
+ return shopName;
|
|
|
+ }
|
|
|
|
|
|
- @Length(min=0, max=20, message="供应商名称长度必须介于 0 和 20 之间")
|
|
|
- public String getShopName() {
|
|
|
- return shopName;
|
|
|
- }
|
|
|
+ public void setShopName(String shopName) {
|
|
|
+ this.shopName = shopName;
|
|
|
+ }
|
|
|
|
|
|
- public void setShopName(String shopName) {
|
|
|
- this.shopName = shopName;
|
|
|
- }
|
|
|
+ public String getPrice() {
|
|
|
+ return price;
|
|
|
+ }
|
|
|
|
|
|
- public String getPrice() {
|
|
|
- return price;
|
|
|
- }
|
|
|
+ public void setPrice(String price) {
|
|
|
+ this.price = price;
|
|
|
+ }
|
|
|
|
|
|
- public void setPrice(String price) {
|
|
|
- this.price = price;
|
|
|
- }
|
|
|
+ public String getDiscount() {
|
|
|
+ return discount;
|
|
|
+ }
|
|
|
|
|
|
- public String getDiscount() {
|
|
|
- return discount;
|
|
|
- }
|
|
|
+ public void setDiscount(String discount) {
|
|
|
+ this.discount = discount;
|
|
|
+ }
|
|
|
|
|
|
- public void setDiscount(String discount) {
|
|
|
- this.discount = discount;
|
|
|
- }
|
|
|
+ public String getDiscountPrice() {
|
|
|
+ return discountPrice;
|
|
|
+ }
|
|
|
|
|
|
- public String getDiscountPrice() {
|
|
|
- return discountPrice;
|
|
|
- }
|
|
|
+ public void setDiscountPrice(String discountPrice) {
|
|
|
+ this.discountPrice = discountPrice;
|
|
|
+ }
|
|
|
|
|
|
- public void setDiscountPrice(String discountPrice) {
|
|
|
- this.discountPrice = discountPrice;
|
|
|
- }
|
|
|
+ public String getTaxRate() {
|
|
|
+ return taxRate;
|
|
|
+ }
|
|
|
|
|
|
- public String getTaxRate() {
|
|
|
- return taxRate;
|
|
|
- }
|
|
|
+ public void setTaxRate(String taxRate) {
|
|
|
+ this.taxRate = taxRate;
|
|
|
+ }
|
|
|
|
|
|
- public void setTaxRate(String taxRate) {
|
|
|
- this.taxRate = taxRate;
|
|
|
- }
|
|
|
+ public String getAddedValueTax() {
|
|
|
+ return addedValueTax;
|
|
|
+ }
|
|
|
|
|
|
- public String getAddedValueTax() {
|
|
|
- return addedValueTax;
|
|
|
- }
|
|
|
+ public void setAddedValueTax(String addedValueTax) {
|
|
|
+ this.addedValueTax = addedValueTax;
|
|
|
+ }
|
|
|
|
|
|
- public void setAddedValueTax(String addedValueTax) {
|
|
|
- this.addedValueTax = addedValueTax;
|
|
|
- }
|
|
|
+ @Length(min = 0, max = 1, message = "是否是规定商品 0否 1是长度必须介于 0 和 1 之间")
|
|
|
+ public String getStipulateFlag() {
|
|
|
+ return stipulateFlag;
|
|
|
+ }
|
|
|
|
|
|
- @Length(min=0, max=1, message="是否是规定商品 0否 1是长度必须介于 0 和 1 之间")
|
|
|
- public String getStipulateFlag() {
|
|
|
- return stipulateFlag;
|
|
|
- }
|
|
|
+ public void setStipulateFlag(String stipulateFlag) {
|
|
|
+ this.stipulateFlag = stipulateFlag;
|
|
|
+ }
|
|
|
|
|
|
- public void setStipulateFlag(String stipulateFlag) {
|
|
|
- this.stipulateFlag = stipulateFlag;
|
|
|
- }
|
|
|
+ public String getImage() {
|
|
|
+ return image;
|
|
|
+ }
|
|
|
|
|
|
- public String getImage() {
|
|
|
- return image;
|
|
|
- }
|
|
|
+ public void setImage(String image) {
|
|
|
+ this.image = image;
|
|
|
+ }
|
|
|
|
|
|
- public void setImage(String image) {
|
|
|
- this.image = image;
|
|
|
- }
|
|
|
+ public String getBuyAgainFlag() {
|
|
|
+ return buyAgainFlag;
|
|
|
+ }
|
|
|
|
|
|
- public String getBuyAgainFlag() {
|
|
|
- return buyAgainFlag;
|
|
|
- }
|
|
|
+ public void setBuyAgainFlag(String buyAgainFlag) {
|
|
|
+ this.buyAgainFlag = buyAgainFlag;
|
|
|
+ }
|
|
|
|
|
|
- public void setBuyAgainFlag(String buyAgainFlag) {
|
|
|
- this.buyAgainFlag = buyAgainFlag;
|
|
|
- }
|
|
|
+ public String getCostCheckFlag() {
|
|
|
+ return costCheckFlag;
|
|
|
+ }
|
|
|
|
|
|
- public String getCostCheckFlag() {
|
|
|
- return costCheckFlag;
|
|
|
- }
|
|
|
+ public void setCostCheckFlag(String costCheckFlag) {
|
|
|
+ this.costCheckFlag = costCheckFlag;
|
|
|
+ }
|
|
|
|
|
|
- public void setCostCheckFlag(String costCheckFlag) {
|
|
|
- this.costCheckFlag = costCheckFlag;
|
|
|
- }
|
|
|
+ public String getCostPrice() {
|
|
|
+ return costPrice;
|
|
|
+ }
|
|
|
|
|
|
- public String getCostPrice() {
|
|
|
- return costPrice;
|
|
|
- }
|
|
|
+ public void setCostPrice(String costPrice) {
|
|
|
+ this.costPrice = costPrice;
|
|
|
+ }
|
|
|
|
|
|
- public void setCostPrice(String costPrice) {
|
|
|
- this.costPrice = costPrice;
|
|
|
- }
|
|
|
+ public String getCostProportional() {
|
|
|
+ return costProportional;
|
|
|
+ }
|
|
|
|
|
|
- public String getCostProportional() {
|
|
|
- return costProportional;
|
|
|
- }
|
|
|
+ public void setCostProportional(String costProportional) {
|
|
|
+ this.costProportional = costProportional;
|
|
|
+ }
|
|
|
|
|
|
- public void setCostProportional(String costProportional) {
|
|
|
- this.costProportional = costProportional;
|
|
|
- }
|
|
|
+ public String getShopFee1() {
|
|
|
+ return shopFee1;
|
|
|
+ }
|
|
|
|
|
|
- public String getShopFee1() {
|
|
|
- return shopFee1;
|
|
|
- }
|
|
|
+ public void setShopFee1(String shopFee1) {
|
|
|
+ this.shopFee1 = shopFee1;
|
|
|
+ }
|
|
|
|
|
|
- public void setShopFee1(String shopFee1) {
|
|
|
- this.shopFee1 = shopFee1;
|
|
|
- }
|
|
|
+ public String getCmFee1() {
|
|
|
+ return cmFee1;
|
|
|
+ }
|
|
|
|
|
|
- public String getCmFee1() {
|
|
|
- return cmFee1;
|
|
|
- }
|
|
|
+ public void setCmFee1(String cmFee1) {
|
|
|
+ this.cmFee1 = cmFee1;
|
|
|
+ }
|
|
|
|
|
|
- public void setCmFee1(String cmFee1) {
|
|
|
- this.cmFee1 = cmFee1;
|
|
|
- }
|
|
|
+ public String getOtherFee1() {
|
|
|
+ return otherFee1;
|
|
|
+ }
|
|
|
|
|
|
- public String getOtherFee1() {
|
|
|
- return otherFee1;
|
|
|
- }
|
|
|
+ public void setOtherFee1(String otherFee1) {
|
|
|
+ this.otherFee1 = otherFee1;
|
|
|
+ }
|
|
|
|
|
|
- public void setOtherFee1(String otherFee1) {
|
|
|
- this.otherFee1 = otherFee1;
|
|
|
- }
|
|
|
+ public String getPriceType() {
|
|
|
+ return priceType;
|
|
|
+ }
|
|
|
|
|
|
- public String getPriceType() {
|
|
|
- return priceType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPriceType(String priceType) {
|
|
|
- this.priceType = priceType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getNormalPrice() {
|
|
|
- return normalPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setNormalPrice(String normalPrice) {
|
|
|
- this.normalPrice = normalPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getUserId() {
|
|
|
- return userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Integer userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getBuyAgainPriceFlag() {
|
|
|
- return buyAgainPriceFlag;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBuyAgainPriceFlag(String buyAgainPriceFlag) {
|
|
|
- this.buyAgainPriceFlag = buyAgainPriceFlag;
|
|
|
- }
|
|
|
+ public void setPriceType(String priceType) {
|
|
|
+ this.priceType = priceType;
|
|
|
+ }
|
|
|
|
|
|
- public String getProductCategory() {
|
|
|
- return productCategory;
|
|
|
- }
|
|
|
+ public String getNormalPrice() {
|
|
|
+ return normalPrice;
|
|
|
+ }
|
|
|
|
|
|
- public void setProductCategory(String productCategory) {
|
|
|
- this.productCategory = productCategory;
|
|
|
- }
|
|
|
+ public void setNormalPrice(String normalPrice) {
|
|
|
+ this.normalPrice = normalPrice;
|
|
|
+ }
|
|
|
|
|
|
- public String getSecondHandType() {
|
|
|
- return secondHandType;
|
|
|
- }
|
|
|
+ public Integer getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
|
|
|
- public void setSecondHandType(String secondHandType) {
|
|
|
- this.secondHandType = secondHandType;
|
|
|
- }
|
|
|
+ public void setUserId(Integer userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
|
|
|
- public CmPromotion getCmPromotion() {
|
|
|
- return cmPromotion;
|
|
|
- }
|
|
|
+ public String getBuyAgainPriceFlag() {
|
|
|
+ return buyAgainPriceFlag;
|
|
|
+ }
|
|
|
|
|
|
- public void setCmPromotion(CmPromotion cmPromotion) {
|
|
|
- this.cmPromotion = cmPromotion;
|
|
|
- }
|
|
|
+ public void setBuyAgainPriceFlag(String buyAgainPriceFlag) {
|
|
|
+ this.buyAgainPriceFlag = buyAgainPriceFlag;
|
|
|
+ }
|
|
|
|
|
|
- public String getIncludedTax() {
|
|
|
- return includedTax;
|
|
|
- }
|
|
|
+ public String getProductCategory() {
|
|
|
+ return productCategory;
|
|
|
+ }
|
|
|
|
|
|
- public void setIncludedTax(String includedTax) {
|
|
|
- this.includedTax = includedTax;
|
|
|
- }
|
|
|
+ public void setProductCategory(String productCategory) {
|
|
|
+ this.productCategory = productCategory;
|
|
|
+ }
|
|
|
|
|
|
- public String getInvoiceType() {
|
|
|
- return invoiceType;
|
|
|
- }
|
|
|
+ public String getSecondHandType() {
|
|
|
+ return secondHandType;
|
|
|
+ }
|
|
|
|
|
|
- public void setInvoiceType(String invoiceType) {
|
|
|
- this.invoiceType = invoiceType;
|
|
|
- }
|
|
|
+ public void setSecondHandType(String secondHandType) {
|
|
|
+ this.secondHandType = secondHandType;
|
|
|
+ }
|
|
|
|
|
|
- public String getSupplierTaxRate() {
|
|
|
- return supplierTaxRate;
|
|
|
- }
|
|
|
+ public CmPromotion getCmPromotion() {
|
|
|
+ return cmPromotion;
|
|
|
+ }
|
|
|
|
|
|
- public void setSupplierTaxRate(String supplierTaxRate) {
|
|
|
- this.supplierTaxRate = supplierTaxRate;
|
|
|
- }
|
|
|
+ public void setCmPromotion(CmPromotion cmPromotion) {
|
|
|
+ this.cmPromotion = cmPromotion;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIncludedTax() {
|
|
|
+ return includedTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIncludedTax(String includedTax) {
|
|
|
+ this.includedTax = includedTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInvoiceType() {
|
|
|
+ return invoiceType;
|
|
|
+ }
|
|
|
|
|
|
- public String getShouldPayTotalTax() {
|
|
|
- return shouldPayTotalTax;
|
|
|
- }
|
|
|
+ public void setInvoiceType(String invoiceType) {
|
|
|
+ this.invoiceType = invoiceType;
|
|
|
+ }
|
|
|
|
|
|
- public void setShouldPayTotalTax(String shouldPayTotalTax) {
|
|
|
- this.shouldPayTotalTax = shouldPayTotalTax;
|
|
|
- }
|
|
|
+ public String getSupplierTaxRate() {
|
|
|
+ return supplierTaxRate;
|
|
|
+ }
|
|
|
|
|
|
- public String getSingleShouldPayTotalTax() {
|
|
|
- return singleShouldPayTotalTax;
|
|
|
- }
|
|
|
+ public void setSupplierTaxRate(String supplierTaxRate) {
|
|
|
+ this.supplierTaxRate = supplierTaxRate;
|
|
|
+ }
|
|
|
|
|
|
- public void setSingleShouldPayTotalTax(String singleShouldPayTotalTax) {
|
|
|
- this.singleShouldPayTotalTax = singleShouldPayTotalTax;
|
|
|
- }
|
|
|
+ public String getShouldPayTotalTax() {
|
|
|
+ return shouldPayTotalTax;
|
|
|
+ }
|
|
|
|
|
|
- public String getOldProductFlag() {
|
|
|
- return oldProductFlag;
|
|
|
- }
|
|
|
+ public void setShouldPayTotalTax(String shouldPayTotalTax) {
|
|
|
+ this.shouldPayTotalTax = shouldPayTotalTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSingleShouldPayTotalTax() {
|
|
|
+ return singleShouldPayTotalTax;
|
|
|
+ }
|
|
|
|
|
|
- public void setOldProductFlag(String oldProductFlag) {
|
|
|
- this.oldProductFlag = oldProductFlag;
|
|
|
- }
|
|
|
+ public void setSingleShouldPayTotalTax(String singleShouldPayTotalTax) {
|
|
|
+ this.singleShouldPayTotalTax = singleShouldPayTotalTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOldProductFlag() {
|
|
|
+ return oldProductFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOldProductFlag(String oldProductFlag) {
|
|
|
+ this.oldProductFlag = oldProductFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCommodityType() {
|
|
|
+ return commodityType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCommodityType(String commodityType) {
|
|
|
+ this.commodityType = commodityType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCouponsLogo() {
|
|
|
+ return couponsLogo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCouponsLogo(Integer couponsLogo) {
|
|
|
+ this.couponsLogo = couponsLogo;
|
|
|
+ }
|
|
|
}
|