| | |
| | | package com.xcong.excoin.modules.coin.dao;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
| | | List<OrderCoinsEntity> selectAllEntrustingCoinOrderList(List<String> list);
|
| | |
|
| | | List<OrderCoinsEntity> selectCoinOrderOnTrade(List<String> list);
|
| | |
|
| | | void updateDeal(@Param("id") Long id, @Param("dealCnt")BigDecimal dealCnt,@Param("dealAmount")BigDecimal dealAmount);
|
| | |
|
| | | void batchUpdateStatus(@Param("list")List<Long> list,@Param("status") Integer status);
|
| | | void updateStatus(@Param("id")Long id,@Param("status") Integer status);
|
| | | }
|