From f5f828b22c5d9ae19991a5e14a5090df63e41f81 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 09 Jul 2020 17:18:30 +0800 Subject: [PATCH] 20200709 代码提交 --- src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java b/src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java index c1a018b..44d250a 100644 --- a/src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java +++ b/src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java @@ -4,7 +4,6 @@ import com.xcong.excoin.common.controller.BaseController; import com.xcong.excoin.common.entity.FebsResponse; import com.xcong.excoin.common.entity.QueryRequest; -import com.xcong.excoin.modules.member.dto.MemberDataInfoDto; import com.xcong.excoin.modules.member.dto.MemberDetailConfirmDto; import com.xcong.excoin.modules.member.entity.AgentFriendRelationEntity; import com.xcong.excoin.modules.member.entity.MemberCoinChargeEntity; @@ -41,6 +40,16 @@ private final IMemberService memberService; /** + *会员列表---拨币 + * @return + */ + @PostMapping("addCoinConfirm") + @ControllerEndpoint(operation = "交易设置---确认", exceptionMessage = "设置失败") + public FebsResponse addCoinConfirm(@Valid MemberEntity memberEntity) { + return memberService.addCoinConfirm(memberEntity); + } + + /** * 代理关系---列表 * @return */ -- Gitblit v1.9.1