UserLevelInfoBean.java
2.24 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package com.wd.foundation.bean.incentive;
import com.wd.foundation.bean.base.BaseBean;
/**
* 用户等级明细bean
*
* @author baozhaoxin
* @version [V1.0.0, 2023/11/17]
* @since V1.0.0
*/
public class UserLevelInfoBean extends BaseBean {
private int afterLevel;
private int afterValue;
private int beforeValue;
private int changeType;
private int changeValue;
private String createTime;
private int currentLevel;
private int id;
private int isLevelUp;
private int levelRewardId;
private int userId;
public int getAfterLevel() {
return afterLevel;
}
public void setAfterLevel(int afterLevel) {
this.afterLevel = afterLevel;
}
public int getAfterValue() {
return afterValue;
}
public void setAfterValue(int afterValue) {
this.afterValue = afterValue;
}
public int getBeforeValue() {
return beforeValue;
}
public void setBeforeValue(int beforeValue) {
this.beforeValue = beforeValue;
}
public int getChangeType() {
return changeType;
}
public void setChangeType(int changeType) {
this.changeType = changeType;
}
public int getChangeValue() {
return changeValue;
}
public void setChangeValue(int changeValue) {
this.changeValue = changeValue;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public int getCurrentLevel() {
return currentLevel;
}
public void setCurrentLevel(int currentLevel) {
this.currentLevel = currentLevel;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getIsLevelUp() {
return isLevelUp;
}
public void setIsLevelUp(int isLevelUp) {
this.isLevelUp = isLevelUp;
}
public int getLevelRewardId() {
return levelRewardId;
}
public void setLevelRewardId(int levelRewardId) {
this.levelRewardId = levelRewardId;
}
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
}