61 lines
827 B
Java
61 lines
827 B
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="QijieUpgrade")
|
|
public class SQijieUpgrade implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int conditionType;
|
|
|
|
private String describe;
|
|
|
|
private int propertyName;
|
|
|
|
private int profession;
|
|
|
|
private int min;
|
|
|
|
private int max;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getConditionType() {
|
|
return conditionType;
|
|
}
|
|
|
|
public String getDescribe() {
|
|
return describe;
|
|
}
|
|
|
|
public int getPropertyName() {
|
|
return propertyName;
|
|
}
|
|
|
|
public int getProfession() {
|
|
return profession;
|
|
}
|
|
|
|
public int getMin() {
|
|
return min;
|
|
}
|
|
|
|
public int getMax() {
|
|
return max;
|
|
}
|
|
|
|
|
|
} |