|
|
@@ -75,7 +75,7 @@ public class YeepayController {
|
|
|
|
|
|
@PostMapping("cancelWechatApply")
|
|
|
@ApiOperation("撤销微信实名认证")
|
|
|
- public R cancelWechatApply(WechatAuthDto wechatAuthDtow) {
|
|
|
+ public R cancelWechatApply(@RequestBody WechatAuthDto wechatAuthDtow) {
|
|
|
return R.data(yeepaySaasService.wechatAuthCancel(wechatAuthDtow));
|
|
|
}
|
|
|
|
|
|
@@ -148,7 +148,7 @@ public class YeepayController {
|
|
|
|
|
|
@PostMapping("/withdraw")
|
|
|
@ApiOperation("提现")
|
|
|
- public R withdraw(WithdrawOrderDto withdrawOrderDto) {
|
|
|
+ public R withdraw(@RequestBody WithdrawOrderDto withdrawOrderDto) {
|
|
|
return R.data(yeepaySaasService.withdrawOrder(withdrawOrderDto));
|
|
|
}
|
|
|
|
|
|
@@ -160,7 +160,7 @@ public class YeepayController {
|
|
|
|
|
|
@PostMapping("/settle")
|
|
|
@ApiOperation("结算")
|
|
|
- public R settle(SettleSelfSettleApplyDto settleSelfSettleApplyDto) {
|
|
|
+ public R settle(@RequestBody SettleSelfSettleApplyDto settleSelfSettleApplyDto) {
|
|
|
return R.data(yeepaySaasService.settleSelfSettleApply(settleSelfSettleApplyDto));
|
|
|
}
|
|
|
|
|
|
@@ -170,21 +170,27 @@ public class YeepayController {
|
|
|
return JSON.parseObject(yeepaySaasService.productFeeQuery(productFeeQueryDto).getStringResult());
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/feeUpdate")
|
|
|
+ @GetMapping("/feeUpdate/query")
|
|
|
+ @ApiOperation("商户产品变更进度查询接口")
|
|
|
+ public JSONObject productFeeModifyQuery(String requestNo) {
|
|
|
+ return JSON.parseObject(yeepaySaasService.productFeeModifyQuery(requestNo).getStringResult());
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/feeUpdate")
|
|
|
@ApiOperation("产品费率修改")
|
|
|
- public JSONObject feeUpdate(ProductFeeModifyDto productFeeModifyDto) {
|
|
|
+ public JSONObject feeUpdate(@RequestBody ProductFeeModifyDto productFeeModifyDto) {
|
|
|
return JSON.parseObject(yeepaySaasService.productFeeModify(productFeeModifyDto).getStringResult());
|
|
|
}
|
|
|
|
|
|
@PostMapping("/transfer")
|
|
|
@ApiOperation("商户转账")
|
|
|
- public JSONObject transfer(TransferOrderDto transferOrderDto) {
|
|
|
+ public JSONObject transfer(@RequestBody TransferOrderDto transferOrderDto) {
|
|
|
return JSON.parseObject(yeepaySaasService.transferOrder(transferOrderDto).getStringResult());
|
|
|
}
|
|
|
|
|
|
@PostMapping("/reCharge")
|
|
|
@ApiOperation("充值")
|
|
|
- public JSONObject reCharge(OnlineBankRechargeOrderDto onlineBankRechargeOrderDto) {
|
|
|
+ public JSONObject reCharge(@RequestBody OnlineBankRechargeOrderDto onlineBankRechargeOrderDto) {
|
|
|
return JSON.parseObject(yeepaySaasService.onlineBankRechargeOrder(onlineBankRechargeOrderDto).getStringResult());
|
|
|
}
|
|
|
|
|
|
@@ -209,13 +215,13 @@ public class YeepayController {
|
|
|
|
|
|
@PostMapping("/divide/apply")
|
|
|
@ApiOperation("申请分账")
|
|
|
- public YopResponse divideApply(DivideApplyDto divideApplyDto) {
|
|
|
+ public YopResponse divideApply(@RequestBody DivideApplyDto divideApplyDto) {
|
|
|
return yeepaySaasService.divideApply(divideApplyDto);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/divide/complete")
|
|
|
@ApiOperation("完结分账")
|
|
|
- public YopResponse divideComplete(DivideCompleteDto divideCompleteDto) {
|
|
|
+ public YopResponse divideComplete(@RequestBody DivideCompleteDto divideCompleteDto) {
|
|
|
return yeepaySaasService.divideComplete(divideCompleteDto);
|
|
|
}
|
|
|
|