first commit
This commit is contained in:
45
hrmsEjb/wenrgise/common/vo/BaseQueryVO.java
Normal file
45
hrmsEjb/wenrgise/common/vo/BaseQueryVO.java
Normal file
@@ -0,0 +1,45 @@
|
||||
package wenrgise.common.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class BaseQueryVO implements Serializable {
|
||||
private long positionRequested = 0L;
|
||||
|
||||
private String headerPrimaryKey = null;
|
||||
|
||||
private int maxHeaderSize = 0;
|
||||
|
||||
private String workListId;
|
||||
|
||||
public long getPositionRequested() {
|
||||
return this.positionRequested;
|
||||
}
|
||||
|
||||
public void setPositionRequested(long newPositionRequested) {
|
||||
this.positionRequested = newPositionRequested;
|
||||
}
|
||||
|
||||
public String getHeaderPrimaryKey() {
|
||||
return this.headerPrimaryKey;
|
||||
}
|
||||
|
||||
public void setHeaderPrimaryKey(String newHeaderPrimaryKey) {
|
||||
this.headerPrimaryKey = newHeaderPrimaryKey;
|
||||
}
|
||||
|
||||
public int getMaxHeaderSize() {
|
||||
return this.maxHeaderSize;
|
||||
}
|
||||
|
||||
public void setMaxHeaderSize(int newMaxHeaderSize) {
|
||||
this.maxHeaderSize = newMaxHeaderSize;
|
||||
}
|
||||
|
||||
public String getWorkListId() {
|
||||
return this.workListId;
|
||||
}
|
||||
|
||||
public void setWorkListId(String newWorkListId) {
|
||||
this.workListId = newWorkListId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user