java110
2020-11-12 998eb5d9c41e6f953236868a99c68804cd0c8e26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.java110.goods.bmo.storeOrderCart;
 
import com.java110.dto.storeOrderCart.StoreOrderCartDto;
import org.springframework.http.ResponseEntity;
 
public interface IGetStoreOrderCartBMO {
 
 
    /**
     * 查询订单购物车
     * add by wuxw
     *
     * @param storeOrderCartDto
     * @return
     */
    ResponseEntity<String> get(StoreOrderCartDto storeOrderCartDto);
 
 
}