jyy
2021-03-18 b4990fac3b5cd0a936369dc51f8b3593b6478730
zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java
@@ -14,7 +14,16 @@
 */
public class ShopShoppingCart  extends EntityDTOExt {
   @Extend
   private static final long serialVersionUID = 1L;
   private static final long serialVersionUID = 1L;
   /**
    *购物车类型-微商城
    */
   public static  final int CAR_TYPE_MICRO =1;
   /**
    *购物车类型-积分商城
    */
   public static  final int CAR_TYPE_SCORE=2;
   
   /**
@@ -50,6 +59,12 @@
    * 用户是否选中 1选中  2未选中
    */
   private Integer isSelected;
   /**
    * 购物车类型 1微商城  2积分商城
    */
   private Integer cartType;
   /**
    * 门店id
@@ -324,6 +339,12 @@
   public List<ShopCoupon> getShopCoupons() {
      return shopCoupons;
   }
   public Integer getCartType() {
      return cartType;
   }
   public void setCartType(Integer cartType) {
      this.cartType = cartType;
   }
}