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;
|
}
|
}
|