wzy
2020-12-13 28d2d010f0dda4c11c024d516287aeee6094548b
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
77
78
79
package com.matrix.system.hive.bean;
 
import java.util.Date;
import java.io.Serializable;
/**
 * 文章点赞记录
 * @date 2016-12-20 14:02
 */
public class ArticleRecord implements Serializable{
 
    private static final long serialVersionUID = 1L; 
 
    
    private Long  id;
            
    
    /**
     * 文章id
     */
    private Long  articleId;
            
    
    /**
     * 用户id
     */
    private Long  userId;
            
    
    /**
     * 点赞时间
     */
    private Date  time;
            
    
 
    public Long getId() {
        return id;
    }
       
       public void setId(Long id) {
        this.id=id;
    }
       
 
    public Long getArticleId() {
        return articleId;
    }
       
       public void setArticleId(Long articleId) {
        this.articleId=articleId;
    }
       
 
    public Long getUserId() {
        return userId;
    }
       
       public void setUserId(Long userId) {
        this.userId=userId;
    }
       
 
    public Date getTime() {
        return time;
    }
       
       public void setTime(Date time) {
        this.time=time;
    }
 
    @Override
    public String toString() {
        return "ArticleRecord [id=" + id + ", articleId=" + articleId
                + ", userId=" + userId + ", time=" + time + "]";
    }
       
       
  
}