jyy
2021-03-19 9108fe37516a05b7af57953cb036e361ae3c86d2
zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java
@@ -16,11 +16,11 @@
   @Extend
   private static final long serialVersionUID = 1L;
   /**
    *购物车类型-微商城
    *购物车类型-直接购买
    */
   public static  final int CAR_TYPE_MICRO =1;
   /**
    *购物车类型-积分商城
    *购物车类型-积分兑换
    */
   public static  final int CAR_TYPE_SCORE=2;
@@ -59,7 +59,10 @@
    * 用户是否选中 1选中  2未选中
    */
   private Integer isSelected;
   /**
    * 购物车类型 1直接支付  2积分兑换
    */
   private Integer cartType;
@@ -337,4 +340,11 @@
      return shopCoupons;
   }
   public Integer getCartType() {
      return cartType;
   }
   public void setCartType(Integer cartType) {
      this.cartType = cartType;
   }
}