package com.xcong.excoin.modules.member.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.xcong.excoin.modules.member.entity.MemberCoinAddressEntity;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.math.BigDecimal;
|
|
public interface MemberCoinAddressMapper extends BaseMapper<MemberCoinAddressEntity> {
|
|
MemberCoinAddressEntity selectSuanliWallet(String address);
|
|
void updateSuanliWallet(@Param("id") Long id,@Param("availableBalance") BigDecimal availableBalance);
|
|
}
|