admin
2018-12-25 4cb15e222cd7d099d533ccbeb7f9a8cd99bf180c
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);
 
}