InboxReqVO.java
836 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
package com.yohoufo.user.requestVO;
import java.util.List;
/**
* Created by shengguo.cai on 2018/9/12.
*/
public class InboxReqVO {
private int uid;
private Integer type;
private Integer businessType;
private List<String> params;
public List<String> getParams() {
return params;
}
public void setParams(List<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;
}
}