mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-10-22 03:27:39 +08:00
🆕 #2784【开放平台】增加批量代云开发之环境管理相关接口
This commit is contained in:
@@ -19,7 +19,7 @@ public interface WxMaShopOrderService {
|
||||
|
||||
WxMaShopBaseResponse orderPay(WxMaShopOrderPayRequest request) throws WxErrorException;
|
||||
|
||||
WxMaShopGetOrderResponse getOrder(Integer orderId, String outOrderId, String openid)
|
||||
WxMaShopGetOrderResponse getOrder(Long orderId, String outOrderId, String openid)
|
||||
throws WxErrorException;
|
||||
|
||||
|
||||
|
@@ -56,7 +56,7 @@ public class WxMaShopOrderServiceImpl implements WxMaShopOrderService {
|
||||
}
|
||||
|
||||
@Override
|
||||
public WxMaShopGetOrderResponse getOrder(Integer orderId, String outOrderId, String openid) throws WxErrorException {
|
||||
public WxMaShopGetOrderResponse getOrder(Long orderId, String outOrderId, String openid) throws WxErrorException {
|
||||
return this.post(ORDER_GET, GsonHelper.buildJsonObject("order_id", orderId, "out_order_id", outOrderId,
|
||||
"openid", openid), WxMaShopGetOrderResponse.class);
|
||||
}
|
||||
|
Reference in New Issue
Block a user