Helius
2021-05-21 f757b44cf6e8ebc1a8942c9ded338544d7485d24
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);
}