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);
|
|
|
|
|
}
|