26 lines
475 B
Java
Raw Normal View History

2019-12-08 14:40:42 +02:00
package models;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
2019-12-14 16:34:34 +02:00
import javax.validation.constraints.NotNull;
2019-12-08 14:40:42 +02:00
@Entity
public class User {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
Long id;
2019-12-14 16:34:34 +02:00
@NotNull
2019-12-08 14:40:42 +02:00
public String firstName;
2019-12-14 16:34:34 +02:00
2019-12-08 14:40:42 +02:00
public String email;
public String toString() {
return firstName + " : " + email;
}
}