经验到上限后不发邮件
parent
49165586a3
commit
984a7943df
|
@ -0,0 +1,35 @@
|
|||
package com.ljsd.jieling.logic.dao.redis;
|
||||
|
||||
public class PlayerArenaInfo {
|
||||
private long uid;
|
||||
private long score;
|
||||
private String serverId;
|
||||
|
||||
public long getUid() {
|
||||
return uid;
|
||||
}
|
||||
|
||||
public int getIUid(){
|
||||
return (int) uid;
|
||||
}
|
||||
|
||||
public void setUid(long uid) {
|
||||
this.uid = uid;
|
||||
}
|
||||
|
||||
public long getScore() {
|
||||
return score;
|
||||
}
|
||||
|
||||
public void setScore(long score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public String getServerId() {
|
||||
return serverId;
|
||||
}
|
||||
|
||||
public void setServerId(String serverId) {
|
||||
this.serverId = serverId;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue