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;
| }
| }
|
|