| 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
37
38
 | | package com.zt.common.message.model; |  |   |  | import java.io.Serializable; |  |   |  | /** |  |  * 默认的消息 |  |  * |  |  * @param <T> |  |  * @author jeff |  |  */ |  | public class Message<T extends Serializable> { |  |   |  |     private String type; |  |   |  |     private T data; |  |   |  |     public Message(String type, T data) { |  |         this.type = type; |  |         this.data = data; |  |     } |  |   |  |     public String getType() { |  |         return type; |  |     } |  |   |  |     public void setType(String type) { |  |         this.type = type; |  |     } |  |   |  |     public T getData() { |  |         return data; |  |     } |  |   |  |     public void setData(T data) { |  |         this.data = data; |  |     } |  |   |  | } | 
 |