31 lines
400 B
Java
31 lines
400 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="ErrorCodeHint")
|
||
|
public class SErrorCodeHint implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int showType;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getShowType() {
|
||
|
return showType;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|