admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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( @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);
}