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);
| }
|
|