1
1
mirror of https://github.com/geekfrog/PermissionsTime.git synced 2025-09-07 12:46:58 +00:00

支持跨服权限

This commit is contained in:
GeekFrog
2017-07-15 13:06:35 +08:00
parent 6b628c55cb
commit 56d0167386
15 changed files with 108 additions and 34 deletions

View File

@ -5,6 +5,7 @@ public class PlayerDataBean {
private Long id;
private String uuid;
private String packageName;
private Boolean global = false;
private Long expire;
public PlayerDataBean() {
@ -43,6 +44,14 @@ public class PlayerDataBean {
this.packageName = packageName;
}
public Boolean getGlobal() {
return global;
}
public void setGlobal(Boolean global) {
this.global = global;
}
public Long getExpire() {
return expire;
}
@ -53,6 +62,7 @@ public class PlayerDataBean {
@Override
public String toString() {
return "PlayerDataBean [id=" + id + ", uuid=" + uuid + ", packageName=" + packageName + ", expire=" + expire + "]";
return "PlayerDataBean [id=" + id + ", uuid=" + uuid + ", packageName=" + packageName + ", global=" + global + ", expire=" + expire + "]";
}
}