first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View 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;
}
}