From adb35bc056873d34c16e65fa56446bdf8caf6096 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 25 May 2020 10:34:19 +0800 Subject: [PATCH] 20200525 代码修改 --- src/main/java/com/xcong/excoin/modules/member/dao/MemberWalletCoinDao.java | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/member/dao/MemberWalletCoinDao.java b/src/main/java/com/xcong/excoin/modules/member/dao/MemberWalletCoinDao.java index ba65eee..f5f3927 100644 --- a/src/main/java/com/xcong/excoin/modules/member/dao/MemberWalletCoinDao.java +++ b/src/main/java/com/xcong/excoin/modules/member/dao/MemberWalletCoinDao.java @@ -2,6 +2,8 @@ import java.util.List; +import org.apache.ibatis.annotations.Param; + import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity; @@ -12,6 +14,6 @@ List<MemberWalletCoinEntity> selectMemberWalletCoinsByMemberId(Long memberId); - MemberWalletCoinEntity selectWalletCoinBymIdAndCode(Long memberId,String walletCode); + MemberWalletCoinEntity selectWalletCoinBymIdAndCode(@Param("memberId")Long memberId,@Param("walletCode")String walletCode); } -- Gitblit v1.9.1