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-11 20:50:53 +08:00
parent 59a15b2ea1
commit 1486f3e339
9 changed files with 235 additions and 16 deletions

View File

@ -0,0 +1,36 @@
package gg.frog.mc.permissionstime.model.db;
public class PlayerDataBean {
private Integer id;
private String uuid;
private String packageName;
private Integer expire;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getPackageName() {
return packageName;
}
public void setPackageName(String packageName) {
this.packageName = packageName;
}
public Integer getExpire() {
return expire;
}
public void setExpire(Integer expire) {
this.expire = expire;
}
}