#
luxiaotao1123
2024-03-05 e7baf5e9ad8a63bdfe56467bc51eb109640e0fd9
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;
 
}