-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathMonster2.java
More file actions
executable file
·43 lines (39 loc) · 944 Bytes
/
Monster2.java
File metadata and controls
executable file
·43 lines (39 loc) · 944 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
package entity;
public class Monster2 {
private Integer monster_id;
private String username;
private String useremail;
public Monster2() {
super();
// TODO Auto-generated constructor stub
}
public Monster2(Integer monster_id, String username, String useremail) {
super();
this.monster_id = monster_id;
this.username = username;
this.useremail = useremail;
}
public Integer getMonster_id() {
return monster_id;
}
public void setMonster_id(Integer monster_id) {
this.monster_id = monster_id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getUseremail() {
return useremail;
}
public void setUseremail(String useremail) {
this.useremail = useremail;
}
@Override
public String toString() {
return "Monster2 [monster_id=" + monster_id + ", username=" + username
+ ", useremail=" + useremail + "]";
}
}