46 lines
1010 B
Java
46 lines
1010 B
Java
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;
|
|
}
|
|
}
|