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