miduo_server/tablemanager/src/main/java/config/SJewelResonanceConfig.java

43 lines
569 B
Java

package config;
import manager.STableManager;
import manager.Table;
import java.util.Map;
@Table(name ="JewelResonanceConfig")
public class SJewelResonanceConfig implements BaseConfig {
private int id;
private int type;
private int level;
private int[][] property;
@Override
public void init() throws Exception {
}
public int getId() {
return id;
}
public int getType() {
return type;
}
public int getLevel() {
return level;
}
public int[][] getProperty() {
return property;
}
}