| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface DappWalletCoinDao extends BaseMapper<DappWalletCoinEntity> { |
| | |
| | | List<DappMemberEntity> selectTotalAmount(); |
| | | |
| | | void addTotalAndaddAvailableByMemberId(@Param("memberId")Long id, @Param("balance")BigDecimal multiply); |
| | | void reduceTotalAndAvailableByMemberId(@Param("memberId")Long id, @Param("balance")BigDecimal multiply); |
| | | |
| | | List<DappWalletCoinEntity> selectAmountThanZero(); |
| | | |
| | | BigDecimal selectTotal(); |
| | | |
| | | BigDecimal selectWithdrawAmountByType(@Param("type") String type, @Param("date") Date date); |
| | | } |