xiaoyong931011
2022-06-24 8db556681e87dfc2537671de072059f5a747472b
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;
    }
}