xiaoyong931011
2021-05-14 d448a4f38f456e3af70bea0b29cde1670172aec3
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);
}