admin
2024-06-24 5d3b3b74afd2ac4cf21697fc38367b2f88170e9f
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package com.taoke.autopay.dto;
 
import java.util.List;
 
/**
 * @author hxh
 * @title: DYOrder
 * @description: TODO
 * @date 2024/6/14 17:56
 */
public class DYOrderDto {
    // 订单未支付
    public final static int ORDER_STATUS_NOT_PAY = 1;
    // 订单取消
    public final static int ORDER_STATUS_CANCELED= 4;
 
 
    /**
     * app_id : 1128
     * post_amount : 0
     * product_name : ["【宠粉福利冰凉贴一包】传奇保罗男款冰丝防晒衣男士夏季薄款户外透"]
     * order_type : ["精选联盟"]
     * order_expire_time : [300]
     * product_id_str : ["3689961278710874220"]
     * order_id : 6930863015984699141
     * order_status : 2
     * order_status_desc : 待发货
     * cancel_reason :
     * order_amount : 600
     * pay_amount : 300
     * shop_id : 172106365
     * shop_name : 大枰运动鞋服专营店
     * create_time : 1718350949
     * _create_time : 2024-06-14 15:42:29
     * source : spk
     */
 
    private Long app_id;
    private Integer post_amount;
    private String order_id;
    private Integer order_status;
    private String order_status_desc;
    private String cancel_reason;
    private Integer order_amount;
    private Integer pay_amount;
    private Long shop_id;
    private String shop_name;
    private Long create_time;
    private String _create_time;
    private String source;
    private List<String> product_name;
    private List<String> order_type;
    private List<Integer> order_expire_time;
    private List<String> product_id_str;
 
    public Long getApp_id() {
        return app_id;
    }
 
    public void setApp_id(Long app_id) {
        this.app_id = app_id;
    }
 
    public Integer getPost_amount() {
        return post_amount;
    }
 
    public void setPost_amount(Integer post_amount) {
        this.post_amount = post_amount;
    }
 
    public String getOrder_id() {
        return order_id;
    }
 
    public void setOrder_id(String order_id) {
        this.order_id = order_id;
    }
 
    public Integer getOrder_status() {
        return order_status;
    }
 
    public void setOrder_status(Integer order_status) {
        this.order_status = order_status;
    }
 
    public String getOrder_status_desc() {
        return order_status_desc;
    }
 
    public void setOrder_status_desc(String order_status_desc) {
        this.order_status_desc = order_status_desc;
    }
 
    public String getCancel_reason() {
        return cancel_reason;
    }
 
    public void setCancel_reason(String cancel_reason) {
        this.cancel_reason = cancel_reason;
    }
 
    public Integer getOrder_amount() {
        return order_amount;
    }
 
    public void setOrder_amount(Integer order_amount) {
        this.order_amount = order_amount;
    }
 
    public Integer getPay_amount() {
        return pay_amount;
    }
 
    public void setPay_amount(Integer pay_amount) {
        this.pay_amount = pay_amount;
    }
 
    public Long getShop_id() {
        return shop_id;
    }
 
    public void setShop_id(Long shop_id) {
        this.shop_id = shop_id;
    }
 
    public String getShop_name() {
        return shop_name;
    }
 
    public void setShop_name(String shop_name) {
        this.shop_name = shop_name;
    }
 
    public Long getCreate_time() {
        return create_time;
    }
 
    public void setCreate_time(Long create_time) {
        this.create_time = create_time;
    }
 
    public String get_create_time() {
        return _create_time;
    }
 
    public void set_create_time(String _create_time) {
        this._create_time = _create_time;
    }
 
    public String getSource() {
        return source;
    }
 
    public void setSource(String source) {
        this.source = source;
    }
 
    public List<String> getProduct_name() {
        return product_name;
    }
 
    public void setProduct_name(List<String> product_name) {
        this.product_name = product_name;
    }
 
    public List<String> getOrder_type() {
        return order_type;
    }
 
    public void setOrder_type(List<String> order_type) {
        this.order_type = order_type;
    }
 
    public List<Integer> getOrder_expire_time() {
        return order_expire_time;
    }
 
    public void setOrder_expire_time(List<Integer> order_expire_time) {
        this.order_expire_time = order_expire_time;
    }
 
    public List<String> getProduct_id_str() {
        return product_id_str;
    }
 
    public void setProduct_id_str(List<String> product_id_str) {
        this.product_id_str = product_id_str;
    }
}