Commit 19d17990 authored by macro's avatar macro
Browse files

Update PortalProductDao.java

parent c408fea8
......@@ -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);
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment