admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
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
package com.newvideo.domain;
 
import com.google.gson.annotations.Expose;
import javax.persistence.Entity;
 
@Entity
public class UserData {
    @Expose
    private String collectCount;// 收藏数
    @Expose
    private String score;// 积分数
    @Expose
    private String watchCount;// 观看过的影片数
 
    public String getCollectCount() {
        return collectCount;
    }
 
    public void setCollectCount(String collectCount) {
        this.collectCount = collectCount;
    }
 
    public String getScore() {
        return score;
    }
 
    public void setScore(String score) {
        this.score = score;
    }
 
    public String getWatchCount() {
        return watchCount;
    }
 
    public void setWatchCount(String watchCount) {
        this.watchCount = watchCount;
    }
}