admin
2019-01-03 5981b2cae7c20ec9021c8ccbe1a926f35f640210
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);
 
}