zhangnaisong
2024-07-11 783272d17be7fce92808bd9fb99f9d64f450bfc9
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
package com.ruoyi.call.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 未读消息对象 ard_call_unread_messages
 * 
 * @author ard
 * @date 2024-07-06
 */
public class ArdCallUnreadMessages extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 用户id */
    @Excel(name = "用户id")
    private String userId ;
 
    /** 会话id */
    @Excel(name = "会话id")
    private String sessionId;
 
    /** 未读数量 */
    @Excel(name = "未读数量")
    private Integer unreadCount;
 
    public void setUserId (String userId ) 
    {
        this.userId  = userId ;
    }
 
    public String getUserId () 
    {
        return userId ;
    }
    public void setSessionId(String sessionId) 
    {
        this.sessionId = sessionId;
    }
 
    public String getSessionId() 
    {
        return sessionId;
    }
    public void setUnreadCount(Integer unreadCount)
    {
        this.unreadCount = unreadCount;
    }
 
    public Integer getUnreadCount()
    {
        return unreadCount;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("userId ", getUserId ())
            .append("sessionId", getSessionId())
            .append("unreadCount", getUnreadCount())
            .toString();
    }
}