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 selectByUid(Long uid); List selectList(@Param("start")Long start,@Param("count")int count); long selectCount(); int updateByPrimaryKeySelective(DeviceTokenIOS record); int updateByPrimaryKey(DeviceTokenIOS record); }