admin
2022-05-12 fa705507ba574c857b1667553737d23b1b7ff495
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.ks.app.service.inter.user;
 
 
import com.ks.app.entity.user.UserExtraInfo;
 
public interface UserExtraInfoService {
 
    public UserExtraInfo get(Long uid);
 
 
    public UserExtraInfo init(Long uid);
 
    /**
     * @return void
     * @author hxh
     * @description 增加未读消息的数量
     * @date 15:15 2022/4/8
     * @param: uid
     * @param: count
     **/
    public void addUnReadMsgCount(Long uid, int count);
 
    /**
     * @author hxh
     * @description 读所有消息
     * @date 15:22 2022/4/8
     * @param: uid
     * @return void
     **/
    public void setMsgRead(Long uid);
 
 
    /**
     * @return void
     * @author hxh
     * @description 设置邀请码
     * @date 15:16 2022/4/8
     * @param: uid
     * @param: code
     **/
    public void setInviteCode(Long uid, String code);
 
 
    /**
     * @author hxh
     * @description 根据邀请码查询用户ID
     * @date 11:55 2022/4/20
     * @param: inviteCode
     * @return java.lang.Long
     **/
    public Long selectUidByInviteCode(String inviteCode);
 
 
    /**
     * @author hxh 
     * @description 设置签到自动提醒
     * @date 15:22 2022/4/21
     * @param: uid
     * @param: notify
     * @return void
     **/
    public void setSignInNotify(Long uid, boolean notify);
 
    
    /**
     * @author hxh 
     * @description 获取签到自动提醒
     * @date 15:23 2022/4/21
     * @param: uid
     * @return boolean
     **/
    public boolean getSignInNotify(Long uid);
 
 
}