-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignup.java
More file actions
108 lines (81 loc) · 1.71 KB
/
Signup.java
File metadata and controls
108 lines (81 loc) · 1.71 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
package project;
import java.sql.Timestamp;
public class Signup {
private int userId;
private String id;
private String password;
private String nickname;
private int level;
private Timestamp createdAt;
private int exp;
private String message;
private String photo;
public Signup() {
}
public Signup(int userId, String id, String password, String nickname, int level,
Timestamp createdAt, int exp, String message, String photo) {
this.userId = userId;
this.id = id;
this.password = password;
this.nickname = nickname;
this.level = level;
this.createdAt = createdAt;
this.exp = exp;
this.message = message;
this.photo = photo;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getPhoto() {
return photo;
}
public void setPhoto(String photo) {
this.photo = photo;
}
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public int getLevel() {
return level;
}
public void setLevel(int level) {
this.level = level;
}
public Timestamp getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Timestamp createdAt) {
this.createdAt = createdAt;
}
public int getExp() {
return exp;
}
public void setExp(int exp) {
this.exp = exp;
}
}