package com.lunhan.xxx.entity.dto;
|
|
import java.util.List;
|
|
/**
|
* 分页查询基础 dto
|
* @Author lin.liu
|
* @Description 分页查询基础 dto
|
* @Date 2021/4/7
|
**/
|
public class SearchBasicDTO extends PagerBasicDTO {
|
/**
|
* 关键字
|
*/
|
private String keywords;
|
/**
|
* 自增id列表
|
*/
|
private List<Long> listId;
|
/**
|
* 数据状态 EState
|
*/
|
private Integer status;
|
/**
|
* 数据状态列表
|
*/
|
private List<Integer> listStatus;
|
/**
|
* 数据创建时间-范围(eg: 2021-01-01 00:00:00 ~ 2021-01-01 23:59:59)"
|
*/
|
private String createTimeRange;
|
/**
|
* 数据创建时间-起始
|
* @ignore
|
*/
|
private Long createTimeStart;
|
/**
|
* 数据创建时间-截止
|
* @ignore
|
*/
|
private Long createTimeEnd;
|
/**
|
* 上次请求最后一条数据的id
|
*/
|
private Long lastId;
|
/**
|
* 排序列表
|
*/
|
private List<OrderByDTO> orderBy;
|
|
public String getKeywords() {
|
return keywords;
|
}
|
|
public void setKeywords(String keywords) {
|
this.keywords = keywords;
|
}
|
|
public List<Long> getListId() {
|
return listId;
|
}
|
|
public void setListId(List<Long> listId) {
|
this.listId = listId;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public List<Integer> getListStatus() {
|
return listStatus;
|
}
|
|
public void setListStatus(List<Integer> listStatus) {
|
this.listStatus = listStatus;
|
}
|
|
public String getCreateTimeRange() {
|
return createTimeRange;
|
}
|
|
public void setCreateTimeRange(String createTimeRange) {
|
this.createTimeRange = createTimeRange;
|
}
|
|
public Long getCreateTimeStart() {
|
return createTimeStart;
|
}
|
|
public void setCreateTimeStart(Long createTimeStart) {
|
this.createTimeStart = createTimeStart;
|
}
|
|
public Long getCreateTimeEnd() {
|
return createTimeEnd;
|
}
|
|
public void setCreateTimeEnd(Long createTimeEnd) {
|
this.createTimeEnd = createTimeEnd;
|
}
|
|
public Long getLastId() {
|
return lastId;
|
}
|
|
public void setLastId(Long lastId) {
|
this.lastId = lastId;
|
}
|
|
public List<OrderByDTO> getOrderBy() {
|
return orderBy;
|
}
|
|
public void setOrderBy(List<OrderByDTO> orderBy) {
|
this.orderBy = orderBy;
|
}
|
|
@Override
|
public String toString() {
|
return "SearchBasicDTO{" +
|
"keywords='" + keywords + '\'' +
|
", listId=" + listId +
|
", status=" + status +
|
", listStatus=" + listStatus +
|
", createTimeRange='" + createTimeRange + '\'' +
|
", createTimeStart=" + createTimeStart +
|
", createTimeEnd=" + createTimeEnd +
|
", lastId=" + lastId +
|
", orderBy='" + orderBy + '\'' +
|
'}';
|
}
|
}
|