1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.yeshi.fanli.dao.mybatis.order;
|
| import java.util.List;
|
| import com.yeshi.fanli.dao.BaseMapper;
| import com.yeshi.fanli.entity.order.CommonOrder;
| import com.yeshi.fanli.entity.order.CommonOrderGoods;
|
| public interface CommonOrderGoodsMapper extends BaseMapper<CommonOrderGoods>{
|
| /**
| * 根据订单号、订单类型查询商品
| * @param list 订单对象
| * @return
| */
| List<CommonOrderGoods> listByOrderNoAndType(List<CommonOrder> list);
|
| }
|
|