xiangpei
3 天以前 654f4eebf519f015506b90d71637e6aad75e5b5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.lili.event;
 
import cn.lili.modules.order.cart.entity.dto.TradeDTO;
 
/**
 * 订单创建消息
 *
 * @author Chopper
 * @since 2021/2/2 15:15
 */
public interface TradeEvent {
 
    /**
     * 订单创建
     *
     * @param tradeDTO 交易
     */
    void orderCreate(TradeDTO tradeDTO);
 
}