Paste
Recent
About
URL
http://paste-bin.com/view/22a93c2e
View Raw
Untitled
By
Coral Butterfly, 4 Months ago, written in java.
public
class
Contact
implements
Serializable
{
Long
id;
String
name;
String
tlf;
Customer customer;
public
Contact
(
)
{
}
@Id @GeneratedValue
(
strategy
=
GenerationType.
IDENTITY
)
public
Long
getId
(
)
{
return
id;
}
public
void
setId
(
Long
long1
)
{
id
=
long1;
}