mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.panzhihua.common.model.dtos.shop;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @auther lyq
 * @create 2021-04-14 15:02:14
 * @describe 分页查询订单列表
 */
@Data
@ApiModel("花城分页查询订单列表")
public class PageComFlowerOrderListDTO {
 
    @ApiModelProperty(value = "分页-当前页数", example = "1")
    private Long pageNum = 1L;
    @ApiModelProperty(value = "分页-每页记录数", example = "10")
    private Long pageSize = 10L;
 
    @ApiModelProperty(value = "订单状态(1.等待配送 2.配送中 3.待收货 4.待评价 5.已完成 6.已取消 7.已退款)")
    private Integer status;
 
    @ApiModelProperty(value = "自提点id")
    private Long pointId;
 
    @ApiModelProperty(value = "商户id")
    private Long storeId;
 
    @ApiModelProperty(value = "配送单id")
    private Long deliveryId;
 
    @ApiModelProperty(value = "配送方式(1.自提 2.快递)")
    private Integer deliveryType;
 
 
    @ApiModelProperty(value = "用户id", hidden = true)
    private Long userId;
}