| | |
| | | package com.doumee.dao.vo; |
| | | |
| | | import com.doumee.dao.business.model.Orders; |
| | | import com.doumee.dao.business.model.OrdersRefund; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private List<String> storeOutImages; |
| | | |
| | | @ApiModelProperty(value = "物品明细列表") |
| | | private List<OrderDetailItemVO> detailList; |
| | | private List<OrderItemVO> detailList; |
| | | |
| | | /** |
| | | * 物品明细项 |
| | | */ |
| | | @Data |
| | | @ApiModel("物品明细项") |
| | | public static class OrderDetailItemVO { |
| | | @ApiModelProperty(value = "退款记录(订单状态为取消/退款时返回)") |
| | | private OrdersRefund ordersRefund; |
| | | |
| | | @ApiModelProperty(value = "尺寸名称") |
| | | private String luggageName; |
| | | @ApiModelProperty(value = "退款取件图片(已存件申请取消时返回)") |
| | | private List<String> refundTakeImages; |
| | | |
| | | @ApiModelProperty(value = "数量") |
| | | private Integer num; |
| | | @ApiModelProperty(value = "平台操作人名称(平台直接取消时返回)") |
| | | private String platformUserName; |
| | | |
| | | @ApiModelProperty(value = "单价(元)") |
| | | private Double unitPriceYuan; |
| | | |
| | | @ApiModelProperty(value = "小计费用(元)") |
| | | private Double subtotal; |
| | | } |
| | | @ApiModelProperty(value = "接单司机姓名") |
| | | private String driverName; |
| | | } |