GetCountAndCheckStatusBean.java
1015 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
47
48
49
package com.wd.foundation.bean.response;
import com.wd.foundation.bean.base.BaseBean;
/**
* 查询账号可修改次数和审核状态
* @author baozhaoxin
* @version [V1.0.0, 2023/5/18]
*/
public class GetCountAndCheckStatusBean extends BaseBean {
/**
* 审核状态,0:存在审核中记录,1:不存在审核中记录
*/
private int checkStatus;
/**
* 可修改次数
*/
private int changeNum;
/**
* 类型;1:账号名称,2:账号简介,3:账号头像 4:主体信息
*/
private int type;
public int getCheckStatus() {
return checkStatus;
}
public void setCheckStatus(int checkStatus) {
this.checkStatus = checkStatus;
}
public int getChangeNum() {
return changeNum;
}
public void setChangeNum(int changeNum) {
this.changeNum = changeNum;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
}