无关风月
2025-08-10 53eece6b5c6845fd70155a101b2a9e567b59a421
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
package com.ruoyi.order.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@ApiModel(value="订单Order导出对象")
public class OrderExport {
 
    // 订单状态
    @Excel(name = "订单状态", width = 20)
    private Integer orderStatus;
    // 订单编号
    @Excel(name = "订单编号", width = 20)
    private String orderNumber;
    // 订单类型
    @Excel(name = "订单类型", width = 20)
    private Integer orderType;
    // 下单时间
    @Excel(name = "下单时间", width = 20)
    private String beginTime;
    // 下单用户
    @Excel(name = "下单用户", width = 20)
    private String userName;
    // 联系方式
    @Excel(name = "联系方式", width = 20)
    private String phone;
    // 商品名称
    @Excel(name = "商品名称", width = 20)
    private String goodsName;
    // 店铺名称
    @Excel(name = "店铺名称", width = 20)
    private String shopName;
    // 商品售价
    @Excel(name = "商品售价", width = 20)
    private BigDecimal sellingPrice;
    // 支付方式
    @Excel(name = "支付方式", width = 20)
    private Integer payType;
    // 支付金额
    @Excel(name = "支付积分", width = 20)
    private BigDecimal pointPayment;
    // 支付金额
    @Excel(name = "支付金额", width = 20)
    private BigDecimal cashPayment;
}