first commit
This commit is contained in:
22
hrmsEjb/wenrgise/common/xml/vo/INFOClass.java
Normal file
22
hrmsEjb/wenrgise/common/xml/vo/INFOClass.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package wenrgise.common.xml.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class INFOClass implements Serializable {
|
||||
private ArrayList _Module;
|
||||
|
||||
public INFOClass() {}
|
||||
|
||||
public INFOClass(ArrayList _module) {
|
||||
this._Module = _module;
|
||||
}
|
||||
|
||||
public ArrayList get_Module() {
|
||||
return this._Module;
|
||||
}
|
||||
|
||||
public void set_Module(ArrayList new_Module) {
|
||||
this._Module = new_Module;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user