Helius
2021-04-01 01ad66a2334661eb6b9c6f8facbead447e72c0a9
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);
}