RuoYi
2026-04-10 6ca82c4965b6bb761a2ac2ae68410a27ebbe7b87
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
76
package com.ruoyi.system.domain;
 
import java.util.Date;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 公告已读记录表 sys_notice_read
 *
 * @author ruoyi
 */
public class SysNoticeRead
{
    /** 主键 */
    private Long readId;
 
    /** 公告ID */
    private Long noticeId;
 
    /** 用户ID */
    private Long userId;
 
    /** 阅读时间 */
    private Date readTime;
 
    public Long getReadId()
    {
        return readId;
    }
 
    public void setReadId(Long readId)
    {
        this.readId = readId;
    }
 
    public Long getNoticeId()
    {
        return noticeId;
    }
 
    public void setNoticeId(Long noticeId)
    {
        this.noticeId = noticeId;
    }
 
    public Long getUserId()
    {
        return userId;
    }
 
    public void setUserId(Long userId)
    {
        this.userId = userId;
    }
 
    public Date getReadTime()
    {
        return readTime;
    }
 
    public void setReadTime(Date readTime)
    {
        this.readTime = readTime;
    }
 
    @Override
    public String toString()
    {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
            .append("readId", getReadId())
            .append("noticeId", getNoticeId())
            .append("userId", getUserId())
            .append("readTime", getReadTime())
            .toString();
    }
}