xiaoyong931011
2022-06-21 0a150c2f9ee895215f248f2be6f6c46fa0a1756a
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
package com.xcong.farmer.cms.netty.bean;
 
 
import java.io.Serializable;
 
 
public class RequestBean implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 请求类型 1-鉴权 2-发送消息
     */
    private Integer type;
 
    private Object data;
 
    public Object getData() {
        return data;
    }
 
    public void setData(Object data) {
        this.data = data;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
}