| | |
| | | package com.xzx.gc.shop.vo; |
| | | |
| | | import com.xzx.gc.entity.ScoreOrderDetails; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "QueryOrderListVo", description = "返回") |
| | | public class QueryOrderListVo { |
| | | |
| | | private Long id; |
| | | @ApiModelProperty(value="订单编号") |
| | | private String orderNo; |
| | | @ApiModelProperty(value="客户姓名") |
| | |
| | | private String phone; |
| | | @ApiModelProperty(value="下单时间") |
| | | private String createTime; |
| | | @ApiModelProperty(value="订单详情") |
| | | private List<ScoreOrderDetails> orderDetails; |
| | | @ApiModelProperty(value="订单总价") |
| | | private String totalPrice; |
| | | @ApiModelProperty(value="数量") |
| | | private String cnt; |
| | | @ApiModelProperty(value="后台确认提货 1:是 2:否") |
| | | private Integer isFinish; |
| | | @ApiModelProperty(value="状态 2-待收货3-已完成4-已取消") |
| | | private String status; |
| | | @ApiModelProperty(value="物流公司") |