add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.iotechn.unimall.biz.service.notify;
 
import com.iotechn.unimall.data.dto.order.OrderDTO;
 
/**
 * Created with IntelliJ IDEA.
 * Description: 管理员通知相关接口,意为:发货、退款审核等需要通知管理员即时处理。此业务不应该影响主流业务,不应该抛异常,并且可以异步执行
 * User: rize
 * Date: 2019/12/27
 * Time: 16:15
 */
public interface AdminNotifyBizService {
 
    public void newOrder(OrderDTO orderDTO);
 
    public void refundOrder(OrderDTO orderDTO);
 
}