InboxReqVO.java
918 Bytes
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
package com.yohoufo.user.requestVO;
import com.yohoufo.user.common.BaseVO;
/**
* Created by shengguo.cai on 2018/9/12.
*/
public class InboxReqVO extends BaseVO{
private static final long serialVersionUID = 954817892332453361L;
private int uid;
private Integer type;
private Integer businessType;
private String params;
public String getParams() {
return params;
}
public void setParams(String params) {
this.params = params;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public int getUid() {
return uid;
}
public void setUid(int uid) {
this.uid = uid;
}
public Integer getBusinessType() {
return businessType;
}
public void setBusinessType(Integer businessType) {
this.businessType = businessType;
}
}