pos机部分逻辑

This commit is contained in:
liuyingfang
2023-04-12 10:27:55 +08:00
parent cb4ec5d64e
commit 403df2b287
4 changed files with 88 additions and 10 deletions

View File

@@ -62,7 +62,7 @@ public class MerchantChannelStatusController {
@ResponseBody
public Result<Object> openOnlinePay(String merchantCode) {
MerchantChannelStatus mcs = mcsService.getByMerchantCode(merchantCode, 4);
((YsAuditServiceImpl) ysAuditServiceV3).openOnlinePay(mcs);
ysAuditServiceV3.openOnlinePay(mcs);
return ResultGenerator.genSuccessResult("操作成功", null);
}