admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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;
    }
}