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); }