| | |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class QueryJhyOrderListDto { |
| | |
| | | @ApiModelProperty(value="手机号") |
| | | private String accountPhone; |
| | | |
| | | @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="预约开始时间") |