| | |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class QueryOrderListDto { |
| | |
| | | @ApiModelProperty(value="客户姓名") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value="状态 2-待收货3-已完成4-已取消") |
| | | private Integer status; |
| | | @ApiModelProperty(value="排序字段 1:客户名称 2:下单时间") |
| | | private Integer namePx; |
| | | |
| | | @ApiModelProperty(value="排序方式 1: asc , 2 :aesc") |
| | | private Integer typePx; |
| | | |
| | | @ApiModelProperty(value="状态 1-待发货2-待收货3-已收货4-已完成5-已评价6-已取消") |
| | | private List<Integer> status; |
| | | |
| | | @JsonFormat(shape=JsonFormat.Shape.STRING,pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | @ApiModelProperty(value="下单时间开始时间") |