| | |
| | | import com.xcong.excoin.modules.contract.entity.ContractOrderEntity; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author helius |
| | | */ |
| | | public interface ContractOrderMapper extends BaseMapper<ContractOrderEntity> { |
| | | |
| | | IPage<ContractOrderEntity> selectHistoryOrderListInPage(Page<ContractOrderEntity> page, @Param("record") ContractOrderEntity contractOrderEntity); |
| | | IPage<ContractOrderEntity> selectHistoryDocumentaryListInPage(Page<ContractOrderEntity> page, @Param("record") ContractOrderEntity contractOrderEntity); |
| | | IPage<ContractOrderEntity> selectHistoryDocumentaryprofitListInPage(Page<ContractOrderEntity> page, @Param("record") ContractOrderEntity contractOrderEntity); |
| | | |
| | | List<Long> selectFollowContractIdList(@Param("orderNoTrade")String orderNoTrade); |
| | | } |