yujian
2018-12-27 dd865e62a9e687aeb2436a59a76bbe461bd83eaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.yeshi.fanli.service.inter.hongbao;
 
import com.yeshi.fanli.entity.bus.user.HongBao;
import com.yeshi.fanli.entity.bus.user.HongBaoV2;
 
public interface HongBaoV2Service {
 
    public int insert(HongBaoV2 record);
 
    public int insertSelective(HongBaoV2 record);
 
    public int updateByPrimaryKey(HongBaoV2 record);
 
    public int updateByPrimaryKeySelective(HongBaoV2 record);
 
    public int deleteByPrimaryKey(Long id);
 
    public HongBaoV2 selectByPrimaryKey(Long id);
 
    /**
     * 将老版本的红包对象转为新版本的对象
     * 
     * @param hb
     */
    public void convert(HongBao hb);
 
}