Files
ruoyi-java/ruoyi-system/src/main/java/com/ruoyi/erp/request/OrderDetailQueryRequest.java
2025-08-18 01:58:23 +08:00

24 lines
562 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.erp.request;
import com.alibaba.fastjson2.JSONObject;
/**
* 查询订单详情请求
*
* 对应接口POST /api/open/order/detail
*/
public class OrderDetailQueryRequest extends ERPRequestBase {
public OrderDetailQueryRequest(ERPAccount erpAccount) {
super("https://open.goofish.pro/api/open/order/detail", erpAccount);
}
public void setOrderNo(String orderNo) {
ensureBody();
this.requestBody.put("order_no", orderNo);
}
private void ensureBody() { if (this.requestBody == null) this.requestBody = new JSONObject(); }
}