forked from AOL-archive/micro-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntity.java
More file actions
78 lines (58 loc) · 1.47 KB
/
Entity.java
File metadata and controls
78 lines (58 loc) · 1.47 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
package app1.simple;
import static javax.persistence.GenerationType.IDENTITY;
import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
import javax.persistence.Version;
@javax.persistence.Entity
@Table(name = "t_jdbc", uniqueConstraints = @UniqueConstraint(columnNames = {
"name", "value" }))
public class Entity implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private Long id;
private String name;
private String value;
private int version;
public Entity(String name2, String value2) {
this.name = name2;
this.value = value2;
}
public Entity(String name2) {
this.name = name2;
}
public Entity(){
}
@Version
@Column(name = "version", nullable = false)
public int getVersion() {
return version;
}
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "id", unique = true, nullable = false)
public Long getId() {
return id;
}
@Column(name = "name", nullable = false)
public String getName() {
return name;
}
@Column(name = "value", nullable = false)
public String getValue() {
return value;
}
public void setId(Long id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
public void setValue(String value) {
this.value = value;
}
public void setVersion(int version) {
this.version = version;
}
}