Update PortalProductDao.java

This commit is contained in:
macro 2020-07-16 20:42:43 +08:00
parent c408fea88f
commit 19d1799031

View File

@ -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);
}