gao
2020-05-22 4c0935d38fc3b8a04cbee29072ce28b8301f73f4
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);
   
}