-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsers.java
More file actions
47 lines (30 loc) · 715 Bytes
/
Users.java
File metadata and controls
47 lines (30 loc) · 715 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
44
45
// default package
// Generated 2016-5-31 9:22:33 by Hibernate Tools 4.3.1.Final
/**
* Users generated by hbm2java
*/
public class Users implements java.io.Serializable {
private String uuid;
private String name;
public Users() {
}
public Users(String uuid) {
this.uuid = uuid;
}
public Users(String uuid, String name) {
this.uuid = uuid;
this.name = name;
}
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}