#
zjj
2024-07-19 fb03ea3bc7cfb37daa4d246992a8262f3aba44ca
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;
 
}