gao
2020-05-22 4c0935d38fc3b8a04cbee29072ce28b8301f73f4
src/main/java/com/xcong/excoin/modules/member/dao/MemberWalletCoinDao.java
@@ -1,5 +1,9 @@
package com.xcong.excoin.modules.member.dao;
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;
@@ -7,4 +11,9 @@
 * @author wzy
 */
public interface MemberWalletCoinDao extends BaseMapper<MemberWalletCoinEntity> {
   List<MemberWalletCoinEntity> selectMemberWalletCoinsByMemberId(Long memberId);
   MemberWalletCoinEntity selectWalletCoinBymIdAndCode(@Param("memberId")Long memberId,@Param("walletCode")String walletCode);
}