1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.xcong.excoin.modules.documentary.service;
|
|
| import com.xcong.excoin.modules.contract.entity.ContractHoldOrderEntity;
|
| /**
| * @author helius
| */
| public interface FollowOrderOperationService {
|
|
| /**
| * 添加跟随者订单
| *
| * @param id 交易员持仓订单ID
| */
| public void addFollowerOrder(Long id);
|
| /**
| * 跟随者订单平仓
| *
| * @param id 交易员持仓ID
| */
| public void closingFollowOrders(Long id);
| }
|
|