first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
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;
}
}