admin
2021-04-02 20f473dc4997e8b8a76f8c75d0a649be0a5ea139
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
package com.yeshi.buwan.domain;
 
import com.google.gson.annotations.Expose;
import com.yeshi.buwan.domain.user.LoginUser;
 
/**
 * 关注视频
 * 
 * @author Administrator
 *
 */
public class Attention {
    @Expose
    private long id;
    @Expose
    private VideoInfo videoInfo;
    private LoginUser loginUser;
    private String createtime;
    private boolean show;
 
    public VideoInfo getVideoInfo() {
        return videoInfo;
    }
 
    public void setVideoInfo(VideoInfo videoInfo) {
        this.videoInfo = videoInfo;
    }
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public LoginUser getLoginUser() {
        return loginUser;
    }
 
    public void setLoginUser(LoginUser loginUser) {
        this.loginUser = loginUser;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
    public boolean isShow() {
        return show;
    }
 
    public void setShow(boolean show) {
        this.show = show;
    }
 
}