-
Notifications
You must be signed in to change notification settings - Fork 3
/
Tprivates.java
52 lines (50 loc) · 1.26 KB
/
Tprivates.java
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
package com.model;
public class Tprivates {
private String privateUserId;
private int showBasic;
private int showTopic;
private int showAnswer;
private int showFollow;
private int showActivity;
public String getPrivateUserId() {
return privateUserId;
}
public void setPrivateUserId(String privateUserId) {
this.privateUserId = privateUserId;
}
public int getShowBasic() {
return showBasic;
}
public void setShowBasic(int showBasic) {
this.showBasic = showBasic;
}
public int getShowTopic() {
return showTopic;
}
public void setShowTopic(int showTopic) {
this.showTopic = showTopic;
}
public int getShowAnswer() {
return showAnswer;
}
public void setShowAnswer(int showAnswer) {
this.showAnswer = showAnswer;
}
public int getShowFollow() {
return showFollow;
}
public void setShowFollow(int showFollow) {
this.showFollow = showFollow;
}
public int getShowActivity() {
return showActivity;
}
public void setShowActivity(int showActivity) {
this.showActivity = showActivity;
}
@Override
public String toString() {
return "Tprivates [privateUserId=" + privateUserId + ", showBasic=" + showBasic + ", showTopic=" + showTopic
+ ", showAnswer=" + showAnswer + ", showFollow=" + showFollow + ", showActivity=" + showActivity + "]";
}
}