🆕 #2784【开放平台】增加批量代云开发之环境管理相关接口

This commit is contained in:
liming1019
2022-08-19 18:21:40 +08:00
committed by Binary Wang
parent 452dd58af9
commit c78a1f5132
9 changed files with 267 additions and 9 deletions

View File

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

View File

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