rk
10 小时以前 cf17c2f7012fc4351f66c71d66a4aa3a9fe9e34a
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.doumee.config.xyy.dto;
 
/**
 * 查询订单状态请求参数
 *
 * @author RabyGao
 * @date Aug 7, 2019
 */
public class QueryOrderStateRequest extends RestRequest {
 
    /**
     * 订单编号
     */
    private String orderId;
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
}