first commit
This commit is contained in:
25
hrmsEjb/wenrgise/common/xml/vo/HashedEnrgiseForms.java
Normal file
25
hrmsEjb/wenrgise/common/xml/vo/HashedEnrgiseForms.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package wenrgise.common.xml.vo;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
public class HashedEnrgiseForms {
|
||||
private SingleForm singleForm;
|
||||
|
||||
private HashMap detailMap = new HashMap();
|
||||
|
||||
public HashMap getDetailMap() {
|
||||
return this.detailMap;
|
||||
}
|
||||
|
||||
public void setDetailMap(HashMap newDetailMap) {
|
||||
this.detailMap = newDetailMap;
|
||||
}
|
||||
|
||||
public SingleForm getSingleForm() {
|
||||
return this.singleForm;
|
||||
}
|
||||
|
||||
public void setSingleForm(SingleForm newSingleForm) {
|
||||
this.singleForm = newSingleForm;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user