...
|
...
|
@@ -26,7 +26,7 @@ public class WalletInfoController { |
|
|
/**
|
|
|
* 钱包余额信息查询
|
|
|
*/
|
|
|
@RequestMapping("method = ufo.wallet.queryUserWalletInfo")
|
|
|
@RequestMapping(params = "method = ufo.wallet.queryUserWalletInfo")
|
|
|
public ApiResponse queryUserWalletInfo( @RequestParam Integer uid){
|
|
|
logger.info("enter ufo.wallet.queryUserWalletInfo with param {}", uid);
|
|
|
Map<String, Object> req = new HashMap<>();
|
...
|
...
|
@@ -37,7 +37,7 @@ public class WalletInfoController { |
|
|
/**
|
|
|
* 钱包交易明细信息查询
|
|
|
*/
|
|
|
@RequestMapping("method = ufo.wallet.queryWalletDetailList")
|
|
|
@RequestMapping(params = "method = ufo.wallet.queryWalletDetailList")
|
|
|
public ApiResponse queryWalletDetailList(UserWalletDetailReqBO walletDetailReqBO){
|
|
|
logger.info("enter queryWalletDetailList with param {}", walletDetailReqBO);
|
|
|
return serviceCaller.call("wallet.queryWalletDetailList", walletDetailReqBO, ApiResponse.class);
|
...
|
...
|
|