package com.doumee.dao.business.model;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* 商品订单信息表
|
* @author 江蹄蹄
|
* @date 2023/03/21 15:48
|
*/
|
@Data
|
@ApiModel("商品订单信息表导出")
|
public class GoodsorderExport {
|
|
|
@ExcelColumn(name="订单编号" ,index =1,width = 10)
|
private Long code;
|
@ExcelColumn(name="商品总数量" ,index =2 ,width = 8)
|
private Integer totalNum;
|
@ExcelColumn(name="订单总价(元)" ,index =3 ,width = 8)
|
private BigDecimal totalPrice;
|
@ExcelColumn(name="积分抵扣(元)" ,index =4 ,width =8)
|
private BigDecimal integralPrice;
|
@ExcelColumn(name="优惠券优惠(元)" ,index =5 ,width = 8)
|
private BigDecimal couponPrice;
|
@ExcelColumn(name="运费(元)" ,index =6 ,width = 8)
|
private BigDecimal mailPrice;
|
@ExcelColumn(name="实付价格(元)" ,index =7 ,width = 8)
|
private BigDecimal price;
|
@ExcelColumn(name="所属经销商" ,index =8 ,width = 10)
|
private String shopName;
|
@ExcelColumn(name="经销商结算(元)" ,index =9 ,width = 8)
|
private BigDecimal shopSettlement;
|
@ExcelColumn(name="配送方式" ,index =10,width = 10 ,valueMapping = "0=快递配送;1=门店自提")
|
private Integer receiveType;
|
@ExcelColumn(name="收货人姓名" ,index =11 ,width = 10)
|
private String linkname;
|
@ExcelColumn(name="收货人电话" ,index =12 ,width = 10)
|
private String linkphone;
|
@ExcelColumn(name="收货地址" ,index =13,width = 18 )
|
private String addr;
|
@ExcelColumn(name="快递信息" ,index =14,width = 10 )
|
private String kdInfo;
|
@ExcelColumn(name="状态" ,index =15,width = 6,valueMapping = "0=待支付;1=待发货/待自提;2=待收货;3=交易完成;4=已取消;5=部分发货;6=已退款")
|
private Integer status;
|
@ExcelColumn(name="订单时间" ,index =16,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 10)
|
private Date createDate;
|
@ExcelColumn(name="商品名称/重量(单价*数量)" ,index =17 ,width = 60)
|
private String goodsName;
|
|
}
|