xiaoyong931011
2020-05-25 caa90edd0fcd0e4f4e920bcc744eef12fee82ae6
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);
   
}