package com.xcong.excoin.modules.otc.service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import com.xcong.excoin.modules.otc.dto.OrderAddDto; import com.xcong.excoin.modules.otc.dto.OrderListDto; import com.xcong.excoin.modules.otc.entity.OtcOrder; import com.xcong.excoin.modules.otc.vo.OrderListVo; public interface OtcOrderService extends IService { void buyOrder(OrderAddDto orderAddDto); void saleOrder(OrderAddDto orderAddDto); IPage findOrderListInPage(OrderListDto orderListDto); void hasPay(Long id); void finishOrder(Long id); }