package com.xcong.excoin.modules.contract.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.xcong.excoin.modules.contract.entity.ContractHoldOrderEntity; import com.xcong.excoin.rabbit.pricequeue.OrderModel; import org.apache.ibatis.annotations.Param; import org.web3j.abi.datatypes.Int; import java.math.BigDecimal; import java.util.HashMap; import java.util.List; /** * @author helius */ public interface ContractHoldOrderDao extends BaseMapper { /** * 根据ids更新所有订单的平仓状态 * * @param list * @return */ int updateContractHoldOrderCanNotClosingByIds(@Param("list") List list, @Param("batchNo") String batchNo); /** * 根据批次号查询次仓订单 * * @param batchNo * @return */ List selectContractHoldOrderByBatchNo(@Param("batchNo") String batchNo); /** * 更新该订单为可平仓状态 * * @param id */ public void updateOrderIsCanClosingAndBatchNoById(@Param("id") Long id); public List selectHoldOrderListByMemberId(@Param("memberId") Long memberId); public List selectHoldOrderListByMemberIdAndSymbol(@Param("memberId") Long memberId, @Param("symbol") String symbol, @Param("type") Integer type); public List selectHoldOrderListByMemberIdAndSymbolTest(@Param("memberId") Long memberId, @Param("type") Integer type); public ContractHoldOrderEntity selectHoldOrderByMemberIdAndId(@Param("memberId") Long memberId, @Param("id") Long id); public int updateHoldOrderIsCanClosingById(@Param("isCanClosing") int isCanClosing, @Param("id") Long id); public List selectAllHoldOrder(); public List selectMemberHoldOrderByPositionType(@Param("positionType") Integer positionType, @Param("memberId") Long memberId); public ContractHoldOrderEntity selectWholeHoldOrderByOrderType(@Param("memberId") Long memberId, @Param("orderType") Integer orderType, @Param("symbol") String symbol); public List selectHoldOrderListForWholeByMemberIdAndSymbol(@Param("memberId") Long memberId, @Param("symbol") String symbol); public List selectAllWholeOrderMemberId(); public List selectWholeHoldOrderSymbolsByMemberId(@Param("memberId") Long memberId); public int updateForcePriceBySymbolAndMemberId(@Param("forcePrice") BigDecimal forcePrice, @Param("memberId") Long memberId, @Param("symbol") String symbol); public List selectMemberHasWholeOrder(); int updateMemberAllHoldOrderClosingStatus(@Param("memberId") Long memberId); }