1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| package com.yeshi.fanli.service.inter.push;
|
| import com.yeshi.fanli.entity.push.DeviceActive;
|
| public interface DeviceActiveService {
|
| /**
| * 添加用户活跃记录
| *
| * @param deviceActive
| */
| public void addDeviceActive(DeviceActive deviceActive);
|
| /**
| *
| * @param device
| * 设备号
| * @param platform
| * 平台类型
| * @return
| */
| public DeviceActive getDeviceByDeviceAndPlatform(String device, String deviceToken, String platform);
|
| /**
| * 获取设备的注册时间
| *
| * @param device
| * @return
| */
| public DeviceActive getFirstActiveInfo(String device);
|
| /**
| * 根据IMEI查询
| * @param imei
| * @return
| */
| public DeviceActive getFirstActiveInfoByImei(String imei);
|
| }
|
|