添加alkData所需要的数据

master
gaojie 2019-05-09 13:40:04 +08:00
parent eb60e1a336
commit d0d61c8c88
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ public class RechargeController {
LOGGER.info("serviceKey : " + serviceKey);
try {
rPCClient = ClientAdapterPo.getClientAdapterPo(serviceKey);
result = rPCClient.getClient().deliveryRecharge(Integer.parseInt(creditId),stone,productId, amount,activityExtra,isOfficial);
result = rPCClient.getClient().deliveryRecharge(Integer.parseInt(creditId),stone,productId, amount,activityExtra,isOfficial,plat,payType,pOrderId);
} catch (Exception e) {
e.printStackTrace();
}

View File

@ -16,6 +16,6 @@ service RPCRequestIFace{
Result testdeliveryGood(1:i32 userId, 2:string payitem) throws (1:common.InvalidOperException ouch);
Result deliveryRecharge(1:i32 userId, 2:string stone,3: string productId,4: string amount,5: string activityExtra, 6:i32 isOfficial) throws (1:common.InvalidOperException ouch);
Result deliveryRecharge(1:i32 userId, 2:string stone,3: string productId,4: string amount,5: string activityExtra, 6:i32 isOfficial,7:string plat,8:string paymentType,9:string orderId) throws (1:common.InvalidOperException ouch);
Result sendMail(1:i32 userId, 2:string rewardItems,3:string title,4:string content) throws (1:common.InvalidOperException ouch);
}