|
@@ -12,7 +12,18 @@ import java.util.List;
|
|
|
* Created by macro on 2018/8/2.
|
|
|
*/
|
|
|
public interface PortalProductDao {
|
|
|
+ /**
|
|
|
+ * 获取购物车商品信息
|
|
|
+ */
|
|
|
CartProduct getCartProduct(@Param("id") Long id);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取促销商品信息列表
|
|
|
+ */
|
|
|
List<PromotionProduct> getPromotionProductList(@Param("ids") List<Long> ids);
|
|
|
- List<SmsCoupon> getAvailableCouponList(@Param("productId") Long productId,@Param("productCategoryId")Long productCategoryId);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取可用优惠券列表
|
|
|
+ */
|
|
|
+ List<SmsCoupon> getAvailableCouponList(@Param("productId") Long productId, @Param("productCategoryId") Long productCategoryId);
|
|
|
}
|