935090232@qq.com
2021-04-14 95f9ea7eb339c36cade6c67d0385c49ec2d81477
zq-erp/src/main/java/com/matrix/system/shopXcx/api/vo/ShopCartVo.java
@@ -2,6 +2,7 @@
import com.matrix.system.shopXcx.bean.ShopCoupon;
import com.matrix.system.shopXcx.bean.ShopShoppingCart;
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
@@ -9,19 +10,13 @@
/**
 * 购物车前台展示对象
 */
@Data
public class ShopCartVo {
   private ShopCoupon coupon;
   private CouponReceiveInfoVO couponReceiveInfoVO;
   public CouponReceiveInfoVO getCouponReceiveInfoVO() {
      return couponReceiveInfoVO;
   }
   public void setCouponReceiveInfoVO(CouponReceiveInfoVO couponReceiveInfoVO) {
      this.couponReceiveInfoVO = couponReceiveInfoVO;
   }
   //是否满足优惠
   private boolean satisfactionCoupon;
@@ -39,60 +34,9 @@
   //优惠金额
   private BigDecimal  couponPrice=BigDecimal.ZERO;
    /**
     * 抵用积分
     */
    private BigDecimal scorePay = BigDecimal.ZERO;
   public ShopCoupon getCoupon() {
      return coupon;
   }
   public void setCoupon(ShopCoupon coupon) {
      this.coupon = coupon;
   }
   public boolean isSatisfactionCoupon() {
      return satisfactionCoupon;
   }
   public void setSatisfactionCoupon(boolean satisfactionCoupon) {
      this.satisfactionCoupon = satisfactionCoupon;
   }
   public List<ShopShoppingCart> getCartList() {
      return cartList;
   }
   public void setCartList(List<ShopShoppingCart> cartList) {
      this.cartList = cartList;
   }
   public String getMsg() {
      return msg;
   }
   public void setMsg(String msg) {
      this.msg = msg;
   }
   public BigDecimal getSubtotal() {
      return subtotal;
   }
   public void setSubtotal(BigDecimal subtotal) {
      this.subtotal = subtotal;
   }
   public BigDecimal getSrcPrice() {
      return srcPrice;
   }
   public void setSrcPrice(BigDecimal srcPrice) {
      this.srcPrice = srcPrice;
   }
   public BigDecimal getCouponPrice() {
      return couponPrice;
   }
   public void setCouponPrice(BigDecimal couponPrice) {
      this.couponPrice = couponPrice;
   }
}