34 lines
586 B
Java
34 lines
586 B
Java
package wenrgise.common.xml.vo;
|
|
|
|
public class EnrgiseApp {
|
|
private String _DBName;
|
|
|
|
private String _WebApp;
|
|
|
|
private String _Module;
|
|
|
|
public String get_DBName() {
|
|
return this._DBName;
|
|
}
|
|
|
|
public void set_DBName(String new_DBName) {
|
|
this._DBName = new_DBName;
|
|
}
|
|
|
|
public String get_WebApp() {
|
|
return this._WebApp;
|
|
}
|
|
|
|
public void set_WebApp(String new_WebApp) {
|
|
this._WebApp = new_WebApp;
|
|
}
|
|
|
|
public String get_Module() {
|
|
return this._Module;
|
|
}
|
|
|
|
public void set_Module(String new_Module) {
|
|
this._Module = new_Module;
|
|
}
|
|
}
|