Untitled

By Coral Butterfly, 4 Months ago, written in java.
  1. public class Contact implements Serializable
  2. {
  3.    Long id;
  4.    String name;
  5.    String tlf;
  6.    Customer customer;
  7.    
  8.    public Contact()
  9.    {
  10.      
  11.    }
  12.    
  13.    @Id @GeneratedValue(strategy=GenerationType.IDENTITY)
  14.    public Long getId()
  15.    {
  16.       return id;
  17.    }
  18.  
  19.    public void setId(Long long1)
  20.    {
  21.       id = long1;
  22.    }