1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.ksource.core.config.message;
|
| import java.util.Map;
|
| import cn.ksource.core.util.HttpRemoteException;
|
| public interface BaseMessage {
|
| /**
| * 发送信息
| * @param map
| * @return
| * @version V1.0.0
| * @author 杨凯
| * @date May 16, 2014 7:18:52 PM
| */
| public boolean sendMsg(Map map) throws HttpRemoteException;
|
| }
|
|