package com.yeshi.fanli.dto.taobao.koubei;
|
|
import java.util.Date;
|
|
/**
|
* @author hxh
|
* @title: KouBeiOrderFilter
|
* @description: 口碑订单查询条件
|
* @date 2021/11/25 17:36
|
*/
|
public class KouBeiOrderFilter {
|
//付款时间
|
public final static int DATE_TYPE_PAY_TIME=1;
|
//创建时间
|
public final static int DATE_TYPE_CREATE_TIME=2;
|
//结算时间
|
public final static int DATE_TYPE_SETTLE_TIME=3;
|
|
//已结算
|
public final static int SETTLE_STATE_SETTLED=1;
|
//未结算
|
public final static int SETTLE_STATE_NOT_SETTLED=2;
|
|
//失效
|
public final static int ORDER_STATE_INVALID=0;
|
//已下单
|
public final static int ORDER_STATE_CREATE=1;
|
//已付款
|
public final static int ORDER_STATE_PAY=2;
|
//已收货
|
public final static int ORDER_STATE_RECEIVED=4;
|
|
|
|
|
|
|
private Integer dateType;
|
private Integer settleState;
|
private Integer orderState;
|
private Date startDate;
|
private Date endDate;
|
private Integer pageSize;
|
private String pid;
|
|
|
public Integer getDateType() {
|
return dateType;
|
}
|
|
public void setDateType(Integer dateType) {
|
this.dateType = dateType;
|
}
|
|
public Integer getSettleState() {
|
return settleState;
|
}
|
|
public void setSettleState(Integer settleState) {
|
this.settleState = settleState;
|
}
|
|
public Integer getOrderState() {
|
return orderState;
|
}
|
|
public void setOrderState(Integer orderState) {
|
this.orderState = orderState;
|
}
|
|
public Date getStartDate() {
|
return startDate;
|
}
|
|
public void setStartDate(Date startDate) {
|
this.startDate = startDate;
|
}
|
|
public Date getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(Date endDate) {
|
this.endDate = endDate;
|
}
|
|
public Integer getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(Integer pageSize) {
|
this.pageSize = pageSize;
|
}
|
|
public String getPid() {
|
return pid;
|
}
|
|
public void setPid(String pid) {
|
this.pid = pid;
|
}
|
}
|