| | |
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| | | import com.xcong.excoin.modules.coin.parameter.vo.ContractSymbolListVo;
|
| | | import com.xcong.excoin.modules.member.entity.MemberWalletContractEntity;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | |
|
| | | public interface MemberWalletContractDao extends BaseMapper<MemberWalletContractEntity> {
|
| | |
|
| | |
| | | * @param id
|
| | | */
|
| | | void increaseWalletContractBalanceById(@Param("availableBalance") BigDecimal availableBalance,@Param("totalBalance") BigDecimal totalBalance,@Param("frozenBalance") BigDecimal frozenBalance,@Param("id") Long id);
|
| | |
|
| | | List<ContractSymbolListVo> findContractSymbolListBymemberId(@Param("memberId")Long memberId);
|
| | |
|
| | | public int updateWalletContractWithVersion(@Param("record") MemberWalletContractEntity memberWalletContractEntity);
|
| | | }
|