From 71b8c9e2103a522f2b3d1cc8e130725149f635e9 Mon Sep 17 00:00:00 2001 From: duhui Date: Fri, 8 Apr 2022 10:59:11 +0800 Subject: [PATCH] =?UTF-8?q?rpc=E6=97=A0=E7=94=A8=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/jmfy/controller/PayLogic.java | 2 +- src/main/thrift/idl/core.thrift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/jmfy/controller/PayLogic.java b/src/main/java/com/jmfy/controller/PayLogic.java index 96afe53..fdbfab6 100644 --- a/src/main/java/com/jmfy/controller/PayLogic.java +++ b/src/main/java/com/jmfy/controller/PayLogic.java @@ -99,7 +99,7 @@ public class PayLogic { LOGGER.info("serviceKey : " + serviceKey); try { rPCClient = ClientAdapterPo.getClientAdapterPo(serviceKey); - result = rPCClient.getClient().deliveryRecharge(cUserInfo.getId(), goodsId, openId, orderId, 0, (int)Double.parseDouble(amount), ext); + result = rPCClient.getClient().deliveryRecharge(cUserInfo.getId(), goodsId, openId, orderId, 0, (int)Double.parseDouble(amount)); } catch (Exception e) { LOGGER.info("callback=>", e); } finally { diff --git a/src/main/thrift/idl/core.thrift b/src/main/thrift/idl/core.thrift index ae32965..38e8a4b 100644 --- a/src/main/thrift/idl/core.thrift +++ b/src/main/thrift/idl/core.thrift @@ -7,5 +7,5 @@ struct Result { } service RPCRequestIFace{ - Result deliveryRecharge(1:i32 uid, 2:string goodsId,3: string openId,4: string orderId,5: i64 orderTime, 6:i32 amount, 7:string ext); + Result deliveryRecharge(1:i32 uid, 2:string goodsId,3: string openId,4: string orderId,5: i64 orderTime, 6:i32 amount); } \ No newline at end of file