Helius
2021-05-24 b7d5e7bf6cb6dc2c6455123a7facd9c903aa81c2
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
39
40
41
42
43
44
45
46
47
48
package com.xcong.excoin.netty.bean;
 
 
import java.io.Serializable;
 
public class ChatRequest implements Serializable {
    private static final long serialVersionUID = 3079080008111369136L;
 
    private String to;
 
    private String from;
 
    private Integer msgType;
 
    private String content;
 
    public String getTo() {
        return to;
    }
 
    public void setTo(String to) {
        this.to = to;
    }
 
    public String getFrom() {
        return from;
    }
 
    public void setFrom(String from) {
        this.from = from;
    }
 
    public Integer getMsgType() {
        return msgType;
    }
 
    public void setMsgType(Integer msgType) {
        this.msgType = msgType;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
}