-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusermodel.java
More file actions
50 lines (45 loc) · 1.05 KB
/
usermodel.java
File metadata and controls
50 lines (45 loc) · 1.05 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
package network_term;
public class usermodel {
String name;
String uid;
String password;
String on;
String intro;
public usermodel(String name, String uid, String password,String on, String intro){
this.name = name;
this.uid = uid;
this.password = password;
this.on = on;
this.intro = intro;
}
public String getIntro() {
return intro;
}
public String getName() {
return name;
}
public String getOn() {
return on;
}
public String getPassword() {
return password;
}
public String getUid() {
return uid;
}
public void setIntro(String intro) {
this.intro = intro;
}
public void setName(String name) {
this.name = name;
}
public void setOn(String on) {
this.on = on;
}
public void setPassword(String password) {
this.password = password;
}
public void setUid(String uid) {
this.uid = uid;
}
}