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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package com.yeshi.fanli.util.goods.douyin.vo;
 
import java.util.List;
 
/**
 * @author hxh
 * @title: DYOrderFilter
 * @description: 抖音订单
 * @date 2022/9/28 14:04
 */
public class DYOrderFilter {
 
    //商品分销
    public final static int ORDER_TYPE_GOODS = 1;
    //直播分销
    public final static int ORDER_TYPE_LIVE = 2;
 
 
    /**
     * 此次请求拉取数量 取值区间: [1, 50]。
     **/
    private Integer size;
    /**
     * 上⼀次相同app_id订单查询返回的游标 某个app_id第⼀次查询应为"0",后
     * ⾯查询应使⽤前⼀次请求返回的
     * Cursor。直到查询返回cursor为""。
     * 可⽤于分批拉取订单
     **/
    private String cursor;
    /**
     * ⽀付的开始时间  开始时间不能⼤于结束时间,且为北京时间的时间戳,单位为秒
     **/
    private Long start_time;
    /**
     * ⽀付的结束时间,如果没有传递order_ids参数,则必填
     * 结束时间与开始时间间隔不超过90天
     **/
    private Long end_time;
    /**
     * 订单号,选填,最多⽀持10个订单号,如果这
     * 个字段填了,
     * start_time/end_time/cursor/size不
     * 会使⽤
     **/
    private List<String> order_ids;
    /**
     * 1-商品分销订单,
     * 2-直播间分销订单
     * 必填,1/2
     **/
    private Integer order_type;
 
    /**
     * pay-按照⽀付时
     * 间查询特定时间范
     * 围内的订单
     * update-按照订单
     * 更新时间查询特定
     * 时间范围内的订单
     **/
    private String time_type;
 
    public Integer getSize() {
        return size;
    }
 
    public void setSize(Integer size) {
        this.size = size;
    }
 
    public String getCursor() {
        return cursor;
    }
 
    public void setCursor(String cursor) {
        this.cursor = cursor;
    }
 
    public Long getStart_time() {
        return start_time;
    }
 
    public void setStart_time(Long start_time) {
        this.start_time = start_time;
    }
 
    public Long getEnd_time() {
        return end_time;
    }
 
    public void setEnd_time(Long end_time) {
        this.end_time = end_time;
    }
 
    public List<String> getOrder_ids() {
        return order_ids;
    }
 
    public void setOrder_ids(List<String> order_ids) {
        this.order_ids = order_ids;
    }
 
    public Integer getOrder_type() {
        return order_type;
    }
 
    public void setOrder_type(Integer order_type) {
        this.order_type = order_type;
    }
 
    public String getTime_type() {
        return time_type;
    }
 
    public void setTime_type(String time_type) {
        this.time_type = time_type;
    }
}