| | |
| | | package com.yeshi.fanli.dao.mybatis.push; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.entity.push.DeviceActive; |
| | | |
| | | public interface DeviceActiveMapper { |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(DeviceActive record); |
| | | |
| | | int insertSelective(DeviceActive record); |
| | | |
| | | DeviceActive selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(DeviceActive record); |
| | | |
| | | int updateByPrimaryKey(DeviceActive record); |
| | | |
| | | DeviceActive selectByDeviceAndPlatform(@Param("device") String device, @Param("platform") int platform); |
| | | |
| | | DeviceActive selectFirstByDeviceAndPlatform(@Param("device") String device, @Param("platform") int platform); |
| | | |
| | | DeviceActive selectByDeviceToeknMd5AndPlatform(@Param("deviceTokenMd5") String deviceTokenMd5, |
| | | @Param("platform") int platform); |
| | | |
| | | DeviceActive selectFirst(String device); |
| | | |
| | | package com.yeshi.fanli.dao.mybatis.push;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.entity.push.DeviceActive;
|
| | |
|
| | | public interface DeviceActiveMapper {
|
| | |
|
| | | int deleteByPrimaryKey(Long id);
|
| | |
|
| | | int insert(DeviceActive record);
|
| | |
|
| | | int insertSelective(DeviceActive record);
|
| | |
|
| | | DeviceActive selectByPrimaryKey(Long id);
|
| | |
|
| | | int updateByPrimaryKeySelective(DeviceActive record);
|
| | |
|
| | | int updateByPrimaryKey(DeviceActive record);
|
| | |
|
| | | DeviceActive selectByDeviceAndPlatform(@Param("device") String device, @Param("platform") int platform);
|
| | | |
| | | DeviceActive selectFirstByDeviceAndPlatform(@Param("device") String device, @Param("platform") int platform);
|
| | |
|
| | | DeviceActive selectByDeviceToeknMd5AndPlatform(@Param("deviceTokenMd5") String deviceTokenMd5,
|
| | | @Param("platform") int platform);
|
| | | |
| | | DeviceActive selectFirst(String device);
|
| | | |
| | | DeviceActive selectFirstByImei(String imei);
|
| | | |
| | | } |