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;
|
}
|