package com.taoke.autopay.vo;
|
|
/**
|
* @author hxh
|
* @title: OrderFilter
|
* @description: TODO
|
* @date 2024/6/14 20:04
|
*/
|
public class OrderFilter {
|
// 今天
|
public static final int TIME_TYPE_TODAY=0;
|
// 昨天
|
public static final int TIME_TYPE_YESTERDAY=1;
|
// 本周
|
public static final int TIME_TYPE_WEEK=2;
|
//本月
|
public static final int TIME_TYPE_MONTH=3;
|
|
|
public static final int STATE_NOT_PROCESS=1;
|
public static final int STATE_PROCESSED=2;
|
public static final int STATE_PROCESS_ERROR=3;
|
|
|
|
private Long uid;
|
private int sort;
|
private Integer timeType;
|
private Integer state;
|
private int page;
|
private int pageSize;
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public int getSort() {
|
return sort;
|
}
|
|
public void setSort(int sort) {
|
this.sort = sort;
|
}
|
|
public Integer getTimeType() {
|
return timeType;
|
}
|
|
public void setTimeType(Integer timeType) {
|
this.timeType = timeType;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public int getPage() {
|
return page;
|
}
|
|
public void setPage(int page) {
|
this.page = page;
|
}
|
|
public int getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(int pageSize) {
|
this.pageSize = pageSize;
|
}
|
}
|