Helius
2021-02-02 c4aabe264e8f2a6002116a20b3f0b27db99c0afd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.contract.service;
 
 
import com.xcong.excoin.modules.member.entity.MemberEntity;
import com.xcong.excoin.rabbit.pricequeue.OrderModel;
import com.xcong.excoin.rabbit.pricequeue.whole.WholePriceDataModel;
 
import java.util.List;
 
/**
 * @author helius
 */
public interface RabbitOrderService {
 
    public void cancelHoldOrder(List<Long> ids);
 
    public void entrustCloseOrder(List<OrderModel> list);
 
    public void wholeBombOrder(List<OrderModel> list);
 
    public void wholeBombOrder(WholePriceDataModel wholePriceData);
}