5 changed files with 138 additions and 4 deletions
@ -0,0 +1,41 @@ |
|||
package com.yxt.ordermall.api.ordorder; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelIgnore; |
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author wangpengfei |
|||
* @date 2025/1/9 11:27 |
|||
*/ |
|||
@Data |
|||
public class OrdOrderExcelVo { |
|||
@ExcelIgnore |
|||
private String sid; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "创建日期",index = 0) |
|||
private String createTime; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "订单编号",index = 1) |
|||
private String outTradeNo; |
|||
@ColumnWidth(30) |
|||
@ExcelProperty(value = "商品名称",index = 2) |
|||
private String name; |
|||
@ColumnWidth(10) |
|||
@ExcelProperty(value = "商品数量",index = 3) |
|||
private String count; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "支付金额",index = 4) |
|||
private String meet; |
|||
@ColumnWidth(50) |
|||
@ExcelProperty(value = "支付方式",index = 5) |
|||
private String payType="微信支付"; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "支付状态",index = 6) |
|||
private String payStatusValue; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "开票状态",index = 7) |
|||
private String invoiceStatusValue; |
|||
|
|||
} |
Loading…
Reference in new issue