You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.0 KiB

package com.community.pocket.data.model;
//信用分历史记录
public class CreditScore {
//用户名
private String username;
//信用分变化
private Integer score;
//变化前分数
private Integer beforeScore;
//备注
private String notes;
//记录时间
private Long time;
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 Integer getBeforeScore() {
return beforeScore;
}
public void setBeforeScore(Integer beforeScore) {
this.beforeScore = beforeScore;
}
public String getNotes() {
return notes;
}
public void setNotes(String notes) {
this.notes = notes;
}
public Long getTime() {
return time;
}
public void setTime(Long time) {
this.time = time;
}
}