分数类
This commit is contained in:
parent
e89d6d089f
commit
a60821429d
|
@ -14,11 +14,11 @@ public class ScoreInfo implements Serializable {
|
|||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userId;
|
||||
private String userId;
|
||||
/**
|
||||
* 关卡ID
|
||||
*/
|
||||
private Long levelId;
|
||||
private String levelId;
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
|
@ -31,53 +31,15 @@ public class ScoreInfo implements Serializable {
|
|||
* 时间(UNIX时间戳)
|
||||
*/
|
||||
private Long time;
|
||||
public ScoreInfo(Long userId,Long levelId,String username,Integer score, Long time){
|
||||
|
||||
public ScoreInfo() {
|
||||
}
|
||||
|
||||
public ScoreInfo(String userId, String levelId, String username, Integer score, Long time) {
|
||||
this.userId = userId;
|
||||
this.levelId = levelId;
|
||||
this.username = username;
|
||||
this.score = score;
|
||||
this.time = time;
|
||||
|
||||
}
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getLevelId() {
|
||||
return levelId;
|
||||
}
|
||||
|
||||
public void setLevelId(Long levelId) {
|
||||
this.levelId = levelId;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public Integer getScore() {
|
||||
return score;
|
||||
}
|
||||
|
||||
public void setScore(Integer score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public Long getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(Long time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue