yujian
2020-03-28 393e3a365b5ebbed6e9eef07fbd18881cde73711
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
40
41
42
43
44
package com.yeshi.fanli.service.inter.user.vip;
 
import com.yeshi.fanli.entity.bus.user.vip.UserLevelUpgradedNotify;
 
/**
 * 用户等级升级通知服务
 * @author Administrator
 *
 */
public interface UserLevelUpgradedNotifyService {
 
    /**
     * 添加用户等级升级提醒
     * @Title: addUserLevelUpgradedNotify
     * @Description: 
     * @param notify 
     * void 返回类型
     * @throws
     */
    public void addUserLevelUpgradedNotify(UserLevelUpgradedNotify notify);
 
    /**
     * 设置已经提醒
     * @Title: setNotified
     * @Description: 
     * @param id 
     * void 返回类型
     * @throws
     */
    public void setNotified(String id);
    
    
    /**
     * 获取需要通知的数据
     * @Title: getNeedNotifyByUid
     * @Description: 
     * @param uid
     * @return 
     * UserLevelUpgradedNotify 返回类型
     * @throws
     */
    public UserLevelUpgradedNotify getNeedNotifyByUid(Long uid);
 
}