-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.java
More file actions
42 lines (40 loc) · 910 Bytes
/
Copy pathcontact.java
File metadata and controls
42 lines (40 loc) · 910 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
package com;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name="contact")
public class contact {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private int id;
private String yourname;
private String email;
private String yourmessage;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getYourname() {
return yourname;
}
public void setYourname(String yourname) {
this.yourname = yourname;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getYourmessage() {
return yourmessage;
}
public void setYourmessage(String yourmessage) {
this.yourmessage = yourmessage;
}
}