Administrator
2018-12-25 4fa67c8de0fe4c3726a0b84db38316568768506c
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.order;
 
import com.yeshi.fanli.entity.order.HongBaoOrder;
 
public interface HongBaoOrderService {
 
    public int insert(HongBaoOrder record);
 
    public int insertSelective(HongBaoOrder record);
 
    public int updateByPrimaryKey(HongBaoOrder record);
    
    public int updateByPrimaryKeySelective(HongBaoOrder record);
    
    public int deleteByPrimaryKey(Long id);
    
    public HongBaoOrder selectByPrimaryKey(Long id);
 
}