Authored by 张帅

修改接口名

... ... @@ -30,7 +30,7 @@ public class WalletChangeController {
* @param
* @return
*/
@RequestMapping("method = ufo.wallet.assertWithdraw")
@RequestMapping(params = "method = ufo.wallet.assertWithdraw")
public ApiResponse assetWithdraw( WalletChangeVO walletChangeVO){
logger.info("enter ufo.wallet.assertWithdraw with param {}", walletChangeVO);
WalletChangeBO reqBO = new WalletChangeBO();
... ... @@ -68,7 +68,7 @@ public class WalletChangeController {
* 提现时发送验证码短信
* @param
*/
@RequestMapping("method=ufo.wallet.sendVerifyCode")
@RequestMapping(params = "method=ufo.wallet.sendVerifyCode")
@ResponseBody
public ApiResponse sendWithdrawCodeToMobile(UserSmsSendReqVO reqVO) {
logger.info("Enter .sendWithdrawCodeToMobile, area is {}, mobile is {}, business_line is {}, clientType is {}", reqVO.getArea(),
... ...
... ... @@ -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);
... ...