generated from root/miduo_server
long转int
parent
468a3cebad
commit
31018fc7ee
|
@ -140,7 +140,9 @@ public class QuickRechargeController {
|
||||||
try {
|
try {
|
||||||
rPCClient = ClientAdapterPo.getClientAdapterPo(serviceKey);
|
rPCClient = ClientAdapterPo.getClientAdapterPo(serviceKey);
|
||||||
long amlong = Long.parseLong(amount);
|
long amlong = Long.parseLong(amount);
|
||||||
result = rPCClient.getClient().deliveryRecharge(cUserInfo.getId(), goodid, uid, orderNo, 0, (int)amlong);
|
int amint = (int)amlong;
|
||||||
|
LOGGER.info("amount:{}",amint);
|
||||||
|
result = rPCClient.getClient().deliveryRecharge(cUserInfo.getId(), goodid, uid, orderNo, 0, amint);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOGGER.info("callback=>", e);
|
LOGGER.info("callback=>", e);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
Loading…
Reference in New Issue