1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.ld.igds.io.notify;
|
| import com.ld.igds.n2.dto.N2MacData;
|
| /**
| * 包括主动通知和
| *
| * @author: andy.jia
| * @description:
| * @version:
| * @data:2020年3月13日
| *
| */
| public interface NotifyN2MacService {
|
| public static final String BEAN_ID = "notify.N2MacService";
|
| /**
| * 解析后的信息通知
| *
| * @param data
| */
| public void notify(N2MacData data);
|
|
| }
|
|