yujian
2019-12-18 89cc8f054c27f70fcfe16f14554a8a12e0c19e23
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/push/DeviceTokenIOSMapper.java
@@ -1,36 +1,35 @@
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);
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);
}