经验到上限后不发邮件

master_dev
grimm 2024-01-25 10:56:41 +08:00
parent 49165586a3
commit 984a7943df
1 changed files with 35 additions and 0 deletions

View File

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