mirror of
https://github.com/geekfrog/PermissionsTime.git
synced 2025-09-07 12:46:58 +00:00
支持跨服权限
This commit is contained in:
@ -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 + "]";
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user