1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.yeshi.fanli.dao.mybatis;
|
| import java.util.List;
|
| import com.yeshi.fanli.dao.BaseMapper;
| import com.yeshi.fanli.entity.bus.user.HongBaoV2;
|
| public interface HongBaoV2Mapper extends BaseMapper<HongBaoV2> {
|
| /**
| * 获取子红包列表
| * @param id
| * @return
| */
| List<HongBaoV2> listChildrenById(Long id);
|
| }
|
|