#
zjj
2024-10-09 9c4da646aaefcd8476eb7a23a889b6af6cffab4e
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;
 
}