#
Junjie
2024-07-05 cf3c6082e48c67461d36596eff6d3da6e54bf84f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.asrs.common.openapi.entity.param;
 
import lombok.Data;
 
@Data
public class OrderListParam {
 
    /**
     * 订单类型
     */
    private Integer orderType;
 
    /**
     * 订单号
     */
    private String orderNo;
 
    /**
     * 订单状态
     */
    private Integer status;
 
}