From 405d4520c7746be0f754213cb684aa6bbf647dcd Mon Sep 17 00:00:00 2001
From: yujian <yujian@163.com>
Date: 星期四, 30 四月 2020 16:13:25 +0800
Subject: [PATCH] 用户额外信息清理
---
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/push/DeviceTokenIOSMapper.java | 67 +++++++++++++++++----------------
1 files changed, 34 insertions(+), 33 deletions(-)
diff --git a/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/push/DeviceTokenIOSMapper.java b/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/push/DeviceTokenIOSMapper.java
index 27895e1..7201a77 100644
--- a/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/push/DeviceTokenIOSMapper.java
+++ b/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/push/DeviceTokenIOSMapper.java
@@ -1,34 +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);
-
- 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);
+
}
\ No newline at end of file
--
Gitblit v1.8.0