Commit 01543cda by 徐康

listcarts返回上次使用的代金券,满减活动保存tenderId

parent 99ec4506
......@@ -82,7 +82,9 @@ public interface ShoppingCartBaseService {
* @param cartParamDto
* @return
*/
BaseResponse<String> getCartCouponCode(CartParamDto cartParamDto, String trackingNo);
default BaseResponse<String> getCartCouponCode(CartParamDto cartParamDto, String trackingNo) {
return null;
}
/**
* 设置购物车商品行集合信息
......@@ -98,7 +100,9 @@ public interface ShoppingCartBaseService {
* @param cartParamDto
* @return
*/
BaseResponse<String> setCartCouponCode(CartParamDto cartParamDto, String trackingNo);
default BaseResponse<String> setCartCouponCode(CartParamDto cartParamDto, String trackingNo) {
return null;
}
default boolean addCartGoodList(CartParamDto cartParamDto) {
return true;
......@@ -116,7 +120,9 @@ public interface ShoppingCartBaseService {
*
* @param cartParamDto
*/
BaseResponse clearMCCafe(CartParamDto cartParamDto, String trackingNo);
default BaseResponse clearMCCafe(CartParamDto cartParamDto, String trackingNo) {
return null;
}
/**
* 获取商品详细信息
*
......
Markdown is supported
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