提交 25ba8c30 authored 作者: huyufan's avatar huyufan

冻结保证金

上级 6554fafc
package com.clx.performance.controller.feign; package com.clx.performance.controller.feign;
import cn.hutool.json.JSONUtil;
import com.clx.performance.param.pc.owner.FrozenAccountParam; import com.clx.performance.param.pc.owner.FrozenAccountParam;
import com.clx.performance.service.OwnerAccountService; import com.clx.performance.service.OwnerAccountService;
import com.msl.common.result.Result; import com.msl.common.result.Result;
...@@ -25,6 +26,7 @@ public class OwnerAccountFeignController { ...@@ -25,6 +26,7 @@ public class OwnerAccountFeignController {
@ApiOperation(value = "冻结保证金", notes = "<br>By:胡宇帆") @ApiOperation(value = "冻结保证金", notes = "<br>By:胡宇帆")
@PostMapping("/ownerAccountFrozen") @PostMapping("/ownerAccountFrozen")
public Result<Object> ownerAccountFrozen(FrozenAccountParam param) { public Result<Object> ownerAccountFrozen(FrozenAccountParam param) {
log.info("进行冻结保证金账户,相关参数{}", JSONUtil.parse(param).toString());
ownerAccountService.ownerAccountFrozen(param); ownerAccountService.ownerAccountFrozen(param);
return Result.ok(); return Result.ok();
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论