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