Pu Zhibing
2025-07-26 0b5d21c6338bb3bd094a5bf2379001c4e9772eb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.stylefeng.guns.modular.system.util.qianyuntong.model;
 
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2025/7/24 9:44
 */
@Data
public class OrderInfo {
    /**
     * 订单id
     */
    private String orderId;
    /**
     * 订单状态
     */
    private String status;
}