xiaoyong931011
2020-12-01 9ef1f7389587bd35f26bb96935a788784f57cb07
src/main/java/com/xcong/excoin/modules/member/mapper/MemberCoinAddressMapper.java
@@ -2,7 +2,14 @@
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);
}