Update PortalProductDao.java
This commit is contained in:
parent
c408fea88f
commit
19d1799031
@ -12,7 +12,18 @@ import java.util.List;
|
|||||||
* Created by macro on 2018/8/2.
|
* Created by macro on 2018/8/2.
|
||||||
*/
|
*/
|
||||||
public interface PortalProductDao {
|
public interface PortalProductDao {
|
||||||
|
/**
|
||||||
|
* 获取购物车商品信息
|
||||||
|
*/
|
||||||
CartProduct getCartProduct(@Param("id") Long id);
|
CartProduct getCartProduct(@Param("id") Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取促销商品信息列表
|
||||||
|
*/
|
||||||
List<PromotionProduct> getPromotionProductList(@Param("ids") List<Long> ids);
|
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);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user