package com.ruoyi.system.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
|
import com.ruoyi.system.domain.TOrderSaleGoods;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
@Data
|
@ApiModel(value = "销售订单导出明细Excel")
|
public class TOrderSaleAndGoodsExportExcel implements Serializable {
|
|
@Excel(width = 30,name = "订单编号")
|
private String orderNum;
|
|
@Excel(width = 30,name = "下单日期")
|
private String createStrTime;
|
|
private List<TOrderSaleGoods> orderSaleGoods;
|
|
@Excel(width = 30,name = "商品总价")
|
private BigDecimal goodsAmount;
|
|
@Excel(width = 30,name = "支付方式",replace = {"现金_1","支付宝_2","微信_3","银行卡_4","其他_5"," _null"})
|
private Integer payType;
|
}
|