peng
2025-07-24 3cba7c6a9c1a9df84bf5289c5a5815fe5eab2261
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cn.lili.event;
 
 
import cn.lili.modules.store.entity.dos.Store;
 
/**
 * @author chc
 * @since 2022/6/2114:46
 */
public interface StoreSettingChangeEvent {
 
    /**
     * 店铺信息更改消息
     *
     * @param store 店铺信息
     */
    void storeSettingChange(Store store);
}