ProductAttributeHistoryQueryDto.java
package com.mycim.valueobject.prp;
import java.sql.Timestamp;
public class ProductAttributeHistoryQueryDto {
private Long facilityRrn;
private Long userRrn;
private Integer pageSize;
private Integer pageNo;
private String orderBy;
private String processId;
private Integer processVersion;
private String productId;
private Integer productVersion;
private Timestamp queryStartTime;
private Timestamp queryEndTime;
/**
* @return the facilityRrn
*/
public Long getFacilityRrn() {
return facilityRrn;
}
/**
* @param facilityRrn the facilityRrn to set
*/
public void setFacilityRrn(Long facilityRrn) {
this.facilityRrn = facilityRrn;
}
/**
* @return the userRrn
*/
public Long getUserRrn() {
return userRrn;
}
/**
* @param userRrn the userRrn to set
*/
public void setUserRrn(Long userRrn) {
this.userRrn = userRrn;
}
/**
* @return the pageSize
*/
public Integer getPageSize() {
return pageSize;
}
/**
* @param pageSize the pageSize to set
*/
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
/**
* @return the pageNo
*/
public Integer getPageNo() {
return pageNo;
}
/**
* @param pageNo the pageNo to set
*/
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
/**
* @return the orderBy
*/
public String getOrderBy() {
return orderBy;
}
/**
* @param orderBy the orderBy to set
*/
public void setOrderBy(String orderBy) {
this.orderBy = orderBy;
}
/**
* @return the processId
*/
public String getProcessId() {
return processId;
}
/**
* @param processId the processId to set
*/
public void setProcessId(String processId) {
this.processId = processId;
}
/**
* @return the processVersion
*/
public Integer getProcessVersion() {
return processVersion;
}
/**
* @param processVersion the processVersion to set
*/
public void setProcessVersion(Integer processVersion) {
this.processVersion = processVersion;
}
/**
* @return the productId
*/
public String getProductId() {
return productId;
}
/**
* @param productId the productId to set
*/
public void setProductId(String productId) {
this.productId = productId;
}
/**
* @return the productVersion
*/
public Integer getProductVersion() {
return productVersion;
}
/**
* @param productVersion the productVersion to set
*/
public void setProductVersion(Integer productVersion) {
this.productVersion = productVersion;
}
/**
* @return the queryStartTime
*/
public Timestamp getQueryStartTime() {
return queryStartTime;
}
/**
* @param queryStartTime the queryStartTime to set
*/
public void setQueryStartTime(Timestamp queryStartTime) {
this.queryStartTime = queryStartTime;
}
/**
* @return the queryEndTime
*/
public Timestamp getQueryEndTime() {
return queryEndTime;
}
/**
* @param queryEndTime the queryEndTime to set
*/
public void setQueryEndTime(Timestamp queryEndTime) {
this.queryEndTime = queryEndTime;
}
}