| | |
| | | import com.xcong.excoin.modules.otc.vo.EntrustListVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public interface OtcEntrustOrderDao extends BaseMapper<OtcEntrustOrder> { |
| | |
| | | IPage<EntrustListVo> selectEntrustListInPage(@Param("record") EntrustOrderListDto dto, Page<EntrustListVo> page); |
| | | |
| | | List<OtcEntrustOrder> selectEntrustOrderByOrderType(@Param("record") OtcEntrustOrder otcEntrustOrder); |
| | | |
| | | IPage<OtcEntrustOrder> selectOwnEntrustListInPage(@Param("record") OtcEntrustOrder otcEntrustOrder, Page<OtcEntrustOrder> page); |
| | | |
| | | int updateRemainAmount(@Param("id") Long id, @Param("amount") BigDecimal amount); |
| | | } |