peng
7 天以前 02422cb80c33f50185f27ef86ec0cb1fd416f928
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);
 
}