luofl
2025-03-13 4f97bdbaadcdc19df9dfb0971b930d799c4aeddc
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
package com.ruoyi.order.vo;
 
import com.ruoyi.common.core.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class OrderExport {
 
    /**
     * 订单状态
     */
    @Excel(name = "订单状态" , readConverterExp = "1=待发货,2=待收货,3=待使用,4=已完成,5=已取消,6=已退款,7=售后中,8=已评价")
    private String orderStatus;
 
    /**
     * 订单编号
     */
    @Excel(name = "订单编号")
    private String orderNumber;
 
    /**
     * 订单类型
     */
    @Excel(name = "订单类型", readConverterExp = "1=服务,2=单品")
    private String orderType;
 
    /**
     * 配送方式
     */
    @Excel(name = "配送方式", readConverterExp = "1=快递,2=自提")
    private String distributionMode;
 
    /**
     * 收货地址
     */
    @Excel(name = "收货地址")
    private String address;
 
    /**
     * 下单时间
     */
    @Excel(name = "下单时间")
    private String createTime;
 
    /**
     * 下单用户
     */
    @Excel(name = "下单用户")
    private String userName;
 
    private Long appUserId;
 
    /**
     * 联系方式
     */
    @Excel(name = "联系方式")
    private String phone;
 
    /**
     * 商品名称
     */
    @Excel(name = "商品名称")
    private String goodsName;
 
    /**
     * 商品售价
     */
    @Excel(name = "商品售价")
    private BigDecimal sellingPrice;
 
    /**
     * 成本价
     */
    @Excel(name = "公司运营成本")
    private BigDecimal companyCostPrice;
 
    /**
     * 成本价
     */
    @Excel(name = "门店、供应商成本")
    private BigDecimal supplierCostPrice;
 
    /**
     * 支付金额
     */
    @Excel(name = "支付金额")
    private String orderMoney;
 
    /**
     * 快递单号
     */
    @Excel(name = "快递单号")
    private String expressNum;
 
    private String expressJson;
 
    private String goodJson;
 
    /**
     * 快递公司
     */
    @Excel(name = "快递公司")
    private String expressName;
 
    /**
     * 省
     */
    @Excel(name = "省")
    private String province;
 
    /**
     * 省区划代码
     */
    @Excel(name = "省区划代码")
    private String provinceCode;
 
    /**
     * 市
     */
    @Excel(name = "市")
    private String city;
 
    /**
     * 市区划代码
     */
    @Excel(name = "市区划代码")
    private String cityCode;
 
    private String addressJson;
}