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
27
28
29
30
31
32
33
34
35
36
| package com.yeshi.fanli.service.inter.help;
|
| import com.yeshi.fanli.entity.bus.help.AppPageNotification;
|
| /**
| * 客户端APP页面通知
| *
| * @author Administrator
| *
| */
| public interface AppPageNotificationService {
|
| /**
| * 通过类型获取具体的通知
| *
| * @param type
| * @return
| */
| public AppPageNotification getAppPageNotificationByType(String type);
|
| /**
| * 通过类型获取具体的通知
| *
| * @param type
| * @return
| */
| public AppPageNotification getAppPageNotificationByTypeCache(String type);
|
| /**
| * 添加
| *
| * @param apn
| */
| public void addAppPageNotification(AppPageNotification apn) throws Exception;
|
| }
|
|