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.aftersale.entity.dos.AfterSale;
 
/**
 * 售后单改变状态
 *
 * @author Chopper
 * @since 2020/11/17 7:13 下午
 */
public interface AfterSaleStatusChangeEvent {
 
    /**
     * 售后单改变
     *
     * @param afterSale 售后
     */
    void afterSaleStatusChange(AfterSale afterSale);
}