1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.yeshi.fanli.dao.mybatis.shop;
|
| import java.util.List;
|
| import com.yeshi.fanli.dao.BaseMapper;
| import com.yeshi.fanli.entity.shop.BanLiShopGoodsSetsPay;
|
| public interface BanLiShopGoodsSetsPayMapper extends BaseMapper<BanLiShopGoodsSetsPay> {
|
| /**
| * 根据套餐ID查询列表
| * @param goodsSetId
| * @return
| */
| List<BanLiShopGoodsSetsPay> listByGoodsSetId(Long goodsSetId);
|
| /**
| * 根据套餐ID计数
| * @param goodsSetId
| * @return
| */
| long countByGoodsSetId(Long goodsSetId);
|
| }
|
|