935090232@qq.com
2021-03-18 5d43370b99a03391c9271d04d3f351f0fd734dae
zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopShoppingCart.java
@@ -15,6 +15,15 @@
public class ShopShoppingCart  extends EntityDTOExt {
   @Extend
   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
@@ -325,5 +340,11 @@
      return shopCoupons;
   }
   
   public Integer getCartType() {
      return cartType;
   }
   
   public void setCartType(Integer cartType) {
      this.cartType = cartType;
   }
}