yujian
2019-02-26 a4d96fb3100e6aaf65e54d260921ceb1c00e54ef
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
28
29
30
31
32
33
34
35
36
package com.yeshi.fanli.dao.mybatis.push;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.entity.push.DeviceTokenIOS;
 
public interface DeviceTokenIOSMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(DeviceTokenIOS record);
 
    int insertSelective(DeviceTokenIOS record);
 
    DeviceTokenIOS selectByPrimaryKey(Long id);
 
    DeviceTokenIOS selectByDevice(String device);
    
    DeviceTokenIOS selectByDeviceToken(String deviceToken);
    
    List<DeviceTokenIOS> selectByUid(Long uid);
    
    List<DeviceTokenIOS> selectList(@Param("start")Long start,@Param("count")int count);
    
    long selectCount();
    
    int updateByPrimaryKeySelective(DeviceTokenIOS record);
 
    int updateByPrimaryKey(DeviceTokenIOS record);
    
    
    
    
}