admin
2022-01-28 cd7767932dddeaf6d9c73a83d4a9b38f0341b77f
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.yeshi.buwan.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;
    }
}