yujian
2018-12-26 f0f94a69b05dd6049e1b3dff2ef3f7a9ac8332fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.yeshi.fanli.service.inter.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);
 
}