调用接口公共方法加入pageSize,pageNo,orderBy,fields
This commit is contained in:
@@ -40,7 +40,67 @@ public class SearchReport extends BaseEntity<SearchReport>{
|
||||
private HashMap<String,Object> searchCondition;
|
||||
public static final String searchConditionSplitor=",";
|
||||
public int searchConditionLimit;
|
||||
private Integer pageNo;
|
||||
private Integer pageSize;
|
||||
private String orderBy;
|
||||
private String fields;
|
||||
|
||||
/**
|
||||
* pageNo
|
||||
* @return pageNo
|
||||
*/
|
||||
|
||||
public Integer getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
/**
|
||||
* @param pageNo the pageNo to set
|
||||
*/
|
||||
public void setPageNo(Integer pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
/**
|
||||
* pageSize
|
||||
* @return pageSize
|
||||
*/
|
||||
|
||||
public Integer getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
/**
|
||||
* @param pageSize the pageSize to set
|
||||
*/
|
||||
public void setPageSize(Integer pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
/**
|
||||
* orderBy
|
||||
* @return orderBy
|
||||
*/
|
||||
|
||||
public String getOrderBy() {
|
||||
return orderBy;
|
||||
}
|
||||
/**
|
||||
* @param orderBy the orderBy to set
|
||||
*/
|
||||
public void setOrderBy(String orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
/**
|
||||
* fields
|
||||
* @return fields
|
||||
*/
|
||||
|
||||
public String getFields() {
|
||||
return fields;
|
||||
}
|
||||
/**
|
||||
* @param fields the fields to set
|
||||
*/
|
||||
public void setFields(String fields) {
|
||||
this.fields = fields;
|
||||
}
|
||||
/**
|
||||
* reportBusinessType
|
||||
* @return reportBusinessType
|
||||
|
||||
Reference in New Issue
Block a user