Helius
2022-07-03 f32a53f5534aa9f9a8591e8b197bb1f8acd9e6c0
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
49
50
51
52
53
54
55
56
57
58
package com.xcong.farmer.cms.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;
 
    private Integer cmd;
 
    public Integer getCmd() {
        return cmd;
    }
 
    public void setCmd(Integer cmd) {
        this.cmd = cmd;
    }
 
    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;
    }
}