Files
HRMS/hrmsEjb/wenrgise/ejb/common/helper/QueryRow.java
2025-07-28 13:56:49 +05:30

27 lines
542 B
Java

package wenrgise.ejb.common.helper;
import java.io.Serializable;
import java.util.HashMap;
public class QueryRow implements Serializable {
private HashMap row = null;
public QueryRow(int iCapacity) {
this.row = new HashMap(iCapacity);
}
public HashMap getRow() {
return this.row;
}
public void setRow(HashMap newRow) {
this.row = newRow;
}
public QueryValue get(String sColumnName) {
if (this.row != null)
return (QueryValue)this.row.get(sColumnName.toUpperCase());
return null;
}
}