From 7a96bee5cc1fbf601db584b223a74ffc96b55047 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 18 Aug 2021 14:39:27 +0800 Subject: [PATCH] 20210818 --- gc-shop/src/main/java/com/xzx/gc/shop/dto/QueryOrderListDto.java | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/gc-shop/src/main/java/com/xzx/gc/shop/dto/QueryOrderListDto.java b/gc-shop/src/main/java/com/xzx/gc/shop/dto/QueryOrderListDto.java index 24cbe1f..fafab47 100644 --- a/gc-shop/src/main/java/com/xzx/gc/shop/dto/QueryOrderListDto.java +++ b/gc-shop/src/main/java/com/xzx/gc/shop/dto/QueryOrderListDto.java @@ -5,6 +5,7 @@ import lombok.Data; import java.util.Date; +import java.util.List; @Data public class QueryOrderListDto { @@ -15,8 +16,14 @@ @ApiModelProperty(value="客户姓名") private String name; + @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 Integer status; + private List<Integer> status; @JsonFormat(shape=JsonFormat.Shape.STRING,pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") @ApiModelProperty(value="下单时间开始时间") -- Gitblit v1.9.1