69 lines
1.5 KiB
Java
69 lines
1.5 KiB
Java
|
package com.ljsd.fight;
|
||
|
|
||
|
import java.util.HashMap;
|
||
|
import java.util.Map;
|
||
|
|
||
|
public class FamilyHeroInfo {
|
||
|
|
||
|
private int templeteId;
|
||
|
private int level;
|
||
|
private int star;
|
||
|
private Map<Integer,Integer> attribute;
|
||
|
private int position;
|
||
|
|
||
|
public int getTempleteId() {
|
||
|
return templeteId;
|
||
|
}
|
||
|
|
||
|
public int getLevel() {
|
||
|
return level;
|
||
|
}
|
||
|
|
||
|
public int getStar() {
|
||
|
return star;
|
||
|
}
|
||
|
|
||
|
public Map<Integer, Integer> getAttribute() {
|
||
|
return attribute;
|
||
|
}
|
||
|
|
||
|
public void setTempleteId(int templeteId) {
|
||
|
this.templeteId = templeteId;
|
||
|
}
|
||
|
|
||
|
public void setLevel(int level) {
|
||
|
this.level = level;
|
||
|
}
|
||
|
|
||
|
public void setAttribute(Map<Integer, Integer> attribute) {
|
||
|
this.attribute = attribute;
|
||
|
}
|
||
|
|
||
|
public int getPosition() {
|
||
|
return position;
|
||
|
}
|
||
|
|
||
|
public void setPosition(int position) {
|
||
|
this.position = position;
|
||
|
}
|
||
|
|
||
|
|
||
|
public FamilyHeroInfo(int templeteId, int level, int star, Map<Integer, Integer> attribute, int position) {
|
||
|
this.templeteId = templeteId;
|
||
|
this.level = level;
|
||
|
this.star = star;
|
||
|
this.attribute = attribute;
|
||
|
this.position = position;
|
||
|
}
|
||
|
|
||
|
public FamilyHeroInfo(int templeteId, int level, int star, Map<Integer, Integer> attribute) {
|
||
|
this.templeteId = templeteId;
|
||
|
this.level = level;
|
||
|
this.attribute = attribute;
|
||
|
this.star = star;
|
||
|
}
|
||
|
|
||
|
public FamilyHeroInfo() {
|
||
|
}
|
||
|
}
|