yujian
2019-05-23 31a566a0f1e2d69662dfcbce8a1418c3cbe42ad3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yeshi.fanli.service.inter.user;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.user.DeviceLotteryRecord;
 
public interface DeviceLotteryRecordService {
 
    public int insertSelective(DeviceLotteryRecord record);
 
    public DeviceLotteryRecord selectByPrimaryKey(Long id);
 
    public int updateByPrimaryKeySelective(DeviceLotteryRecord record);
 
    public int updateByPrimaryKey(DeviceLotteryRecord record);
 
    public List<DeviceLotteryRecord> listByPlatformAndDevice(int platform, String device);
 
    public int deleteByPrimaryKey(Long id);
    
}