xiaoyong931011
2021-03-04 c0fac904e85b0b0131cde4c6b7f1e8de9f095089
src/main/java/com/xcong/excoin/modules/contract/service/ContractHoldOrderService.java
@@ -3,10 +3,7 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.contract.entity.ContractHoldOrderEntity;
import com.xcong.excoin.modules.contract.parameter.dto.ChangeBondDto;
import com.xcong.excoin.modules.contract.parameter.dto.ProfitOrLessDto;
import com.xcong.excoin.modules.contract.parameter.dto.SubmitOrderDto;
import com.xcong.excoin.modules.contract.parameter.dto.SymbolDto;
import com.xcong.excoin.modules.contract.parameter.dto.*;
import com.xcong.excoin.rabbit.pricequeue.OrderModel;
import org.apache.ibatis.annotations.Param;
@@ -25,9 +22,11 @@
    public void updateOrderIsCanClosingAndBatchNoById(Long id);
    public Result findHoldOrderList(String symbol);
    public Result findHoldOrderList(String symbol, int type);
    public Result cancelHoldOrder(Long id);
    public Result cancelHoldOrder(WholeCloseOrderDto wholeCloseOrderDto);
    public Result cancelHoldOrderBatch(SymbolDto symbolDto);
@@ -37,4 +36,17 @@
    public Result findContractMoneyInfo(String symbol);
    public Result changeLeverRate(ChangeLeverRateDto changeLeverRateDto);
    public Result findHoldOrderDetailById(Long id);
    public Result findOrderList(OrderListDto orderListDto);
    public Result findOrderDetailById(Long id);
    public void calHoldOrderHoldFeeAmount();
    public Result changePositionType();
    public void calHoldFeeAmountForBondAmount();
}