临时保存

back_recharge
duhui 2021-06-17 15:23:37 +08:00
parent c4d6ee097b
commit 870f5eea52
2 changed files with 107 additions and 0 deletions

View File

@ -0,0 +1,83 @@
package com.ljsd.jieling.logic.dao.gm;
/**
* @Author hj
* @Date 2021/6/17 15:16
* @Description: gm
* @Version 1.0
*/
public class ArenaOfPlayer {
private int uId;
private int level;
private String name;
private int head;
private int headFrame;
private String guildName;
private int userTitle;
private int practiceLevel;
public int getuId() {
return uId;
}
public void setuId(int uId) {
this.uId = uId;
}
public int getLevel() {
return level;
}
public void setLevel(int level) {
this.level = level;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getHead() {
return head;
}
public void setHead(int head) {
this.head = head;
}
public int getHeadFrame() {
return headFrame;
}
public void setHeadFrame(int headFrame) {
this.headFrame = headFrame;
}
public String getGuildName() {
return guildName;
}
public void setGuildName(String guildName) {
this.guildName = guildName;
}
public int getUserTitle() {
return userTitle;
}
public void setUserTitle(int userTitle) {
this.userTitle = userTitle;
}
public int getPracticeLevel() {
return practiceLevel;
}
public void setPracticeLevel(int practiceLevel) {
this.practiceLevel = practiceLevel;
}
}

View File

@ -0,0 +1,24 @@
package com.ljsd.jieling.logic.dao.gm;
import com.ljsd.jieling.logic.dao.Hero;
import com.ljsd.jieling.logic.dao.Jewel;
import com.ljsd.jieling.logic.dao.Pokemon;
import java.util.List;
/**
* @Author hj
* @Date 2021/6/17 13:43
* @Description:
* @Version 1.0
*/
public class ArenaOfUser {
private ArenaOfPlayer player;
private List<Hero> heroes;
private List<Jewel> jewels;
private List<Pokemon> pokemons;
}