rk
7 小时以前 c74a6f59490cfb9a0ee37f70427739b74e7fbd58
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
package com.doumee.dao.vo;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class OrdersExportVO {
 
    @ExcelColumn(name = "订单编号", index = 0)
    private String code;
 
    @ExcelColumn(name = "物品信息", index = 1)
    private String goodsInfo;
 
    @ExcelColumn(name = "类型", index = 2)
    private String typeName;
 
    @ExcelColumn(name = "订单级别", index = 3)
    private String orderLevel;
 
    @ExcelColumn(name = "物品保费(元)", index = 4)
    private String declaredFee;
 
    @ExcelColumn(name = "基础服务费(元)", index = 5)
    private String basicAmount;
 
    @ExcelColumn(name = "订单总价(元)", index = 6)
    private String totalAmount;
 
    @ExcelColumn(name = "实付现金(元)", index = 7)
    private String payAmount;
 
    @ExcelColumn(name = "加急费(元)", index = 8)
    private String urgentAmount;
 
    @ExcelColumn(name = "退款金额(元)", index = 9)
    private String refundAmount;
 
    @ExcelColumn(name = "超时金额(元)", index = 10)
    private String overdueAmount;
 
    @ExcelColumn(name = "异常金额(元)", index = 11)
    private String exceptionAmount;
 
    @ExcelColumn(name = "优惠券折扣(元)", index = 12)
    private String deductionAmount;
 
    @ExcelColumn(name = "订单状态", index = 13)
    private String statusDesc;
 
    @ExcelColumn(name = "结算状态", index = 14)
    private String settlementDesc;
 
    @ExcelColumn(name = "支付时间", index = 15, dateFormat = "yyyy-MM-dd HH:mm:ss", width = 16)
    private Date payTime;
 
    @ExcelColumn(name = "创建时间", index = 16, dateFormat = "yyyy-MM-dd HH:mm:ss", width = 16)
    private Date createTime;
}