yujian
2019-01-11 64fa40bb05e09c55617a581e006cd0d25c6fc986
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
    
}