| | |
| | | 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( @Param("uid")Long uid, @Param("list")List<Integer> list); |
| | | |
| | | List<DeviceTokenIOS> selectList(@Param("start")Long start,@Param("count")int count, @Param("array")String[] arrayVersion); |
| | | |
| | | long selectCount(); |
| | | |
| | | int updateByPrimaryKeySelective(DeviceTokenIOS record); |
| | | |
| | | int updateByPrimaryKey(DeviceTokenIOS record); |
| | | |
| | | |
| | | |
| | | |
| | | 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 selectByDeviceForUpdate(String device);
|
| | | |
| | | DeviceTokenIOS selectByDeviceToken(String deviceToken);
|
| | | |
| | | List<DeviceTokenIOS> selectByUid( @Param("uid")Long uid, @Param("list")List<Integer> list);
|
| | | |
| | | List<DeviceTokenIOS> selectList(@Param("start")Long start,@Param("count")int count, @Param("list")List<Integer> list);
|
| | | |
| | | long selectCount();
|
| | | |
| | | int updateByPrimaryKeySelective(DeviceTokenIOS record);
|
| | |
|
| | | int updateByPrimaryKey(DeviceTokenIOS record);
|
| | | |
| | | } |