2026-06-25 a26b31cc9f3ee9b21b1a754e80fa7359e8a7a8f8
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
package cn.iocoder.yudao.module.pay.controller.admin.order.vo;
 
import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat;
import cn.iocoder.yudao.framework.excel.core.convert.DictConvert;
import cn.iocoder.yudao.framework.excel.core.convert.MoneyConvert;
import cn.iocoder.yudao.module.pay.enums.DictTypeConstants;
import cn.idev.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 支付订单 Excel VO
 *
 * @author aquan
 */
@Data
public class PayOrderExcelVO {
 
    @ExcelProperty("编号")
    private Long id;
 
    @ExcelProperty("创建时间")
    private LocalDateTime createTime;
 
    @ExcelProperty(value = "支付金额", converter = MoneyConvert.class)
    private Integer price;
 
    @ExcelProperty(value = "退款金额", converter = MoneyConvert.class)
    private Integer refundPrice;
 
    @ExcelProperty(value = "手续金额", converter = MoneyConvert.class)
    private Integer channelFeePrice;
 
    @ExcelProperty("商户单号")
    private String merchantOrderId;
 
    @ExcelProperty(value = "支付单号")
    private String no;
 
    @ExcelProperty("渠道单号")
    private String channelOrderNo;
 
    @ExcelProperty(value = "支付状态", converter = DictConvert.class)
    @DictFormat(DictTypeConstants.ORDER_STATUS)
    private Integer status;
 
    @ExcelProperty(value = "渠道编号名称", converter = DictConvert.class)
    @DictFormat(DictTypeConstants.CHANNEL_CODE)
    private String channelCode;
 
    @ExcelProperty("订单支付成功时间")
    private LocalDateTime successTime;
 
    @ExcelProperty("订单失效时间")
    private LocalDateTime expireTime;
 
    @ExcelProperty(value = "应用名称")
    private String appName;
 
    @ExcelProperty("商品标题")
    private String subject;
 
    @ExcelProperty("商品描述")
    private String body;
 
}