admin
2024-07-25 bd014bc7bfbc43a071f682f25b473a1cf103027e
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
package com.taoke.autopay.dto.admin;
 
import com.alibaba.excel.annotation.ExcelProperty;
 
/**
 * @author hxh
 * @title: OrderExcelDataDto
 * @description: 订单excel输出
 * @date 2024/7/18 22:44
 */
 
public class OrderExcelDataDto {
 
    @ExcelProperty("ID")
    private String id;
    @ExcelProperty("老铁ID")
    private Long uid;
    @ExcelProperty("口令")
    private String key;
    @ExcelProperty("口令提交时间")
    private String createTime;
    @ExcelProperty("是否支付成功")
    private String paySuccess;
    @ExcelProperty("状态简介")
    private String stateDesc;
    @ExcelProperty("订单金额")
    private String orderMoney;
    @ExcelProperty("支付时间")
    private String payTime;
    @ExcelProperty("支付方式")
    private String payType;
    @ExcelProperty("支付设备")
    private String payDevice;
    @ExcelProperty("订单号")
    private String orderNo;
    @ExcelProperty("订单渠道")
    private String orderChannel;
    @ExcelProperty("电商平台")
    private String platform;
    @ExcelProperty("总数")
    private int totalCount;
    @ExcelProperty("总金额")
    private String totalMoney;
 
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public String getPaySuccess() {
        return paySuccess;
    }
 
    public void setPaySuccess(String paySuccess) {
        this.paySuccess = paySuccess;
    }
 
    public String getOrderMoney() {
        return orderMoney;
    }
 
    public void setOrderMoney(String orderMoney) {
        this.orderMoney = orderMoney;
    }
 
    public String getPayType() {
        return payType;
    }
 
    public void setPayType(String payType) {
        this.payType = payType;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public String getOrderChannel() {
        return orderChannel;
    }
 
    public void setOrderChannel(String orderChannel) {
        this.orderChannel = orderChannel;
    }
 
    public int getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(int totalCount) {
        this.totalCount = totalCount;
    }
 
    public String getTotalMoney() {
        return totalMoney;
    }
 
    public void setTotalMoney(String totalMoney) {
        this.totalMoney = totalMoney;
    }
 
    public String getPlatform() {
        return platform;
    }
 
    public void setPlatform(String platform) {
        this.platform = platform;
    }
 
    public String getStateDesc() {
        return stateDesc;
    }
 
    public void setStateDesc(String stateDesc) {
        this.stateDesc = stateDesc;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getPayTime() {
        return payTime;
    }
 
    public void setPayTime(String payTime) {
        this.payTime = payTime;
    }
 
    public String getPayDevice() {
        return payDevice;
    }
 
    public void setPayDevice(String payDevice) {
        this.payDevice = payDevice;
    }
}