141 lines
3.2 KiB
Java
141 lines
3.2 KiB
Java
package ovh.herisson.Clyde.Tables;
|
|
|
|
import jakarta.persistence.*;
|
|
import java.util.Date;
|
|
|
|
|
|
@Entity
|
|
public class InscriptionRequest {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.AUTO)
|
|
private int id;
|
|
private String firstName;
|
|
private String lastName;
|
|
private String address;
|
|
private String email;
|
|
private String country;
|
|
private Date birthDate;
|
|
private Long curriculumId;
|
|
private RequestState state;
|
|
private String profilePicture;
|
|
private String password;
|
|
private String identityCard;
|
|
private Date submissionDate;
|
|
public InscriptionRequest(){}
|
|
|
|
public InscriptionRequest(String lastName, String firstName, String address, String email, String country, Date birthDate,Long curriculumId, RequestState state, String profilePicture, String password, String identityCard, Date submissionDate){
|
|
this.lastName = lastName;
|
|
this.firstName = firstName;
|
|
this.address = address;
|
|
this.email = email;
|
|
this.country = country;
|
|
this.birthDate = birthDate;
|
|
this.curriculumId = curriculumId;
|
|
this.state = state;
|
|
this.profilePicture = profilePicture;
|
|
this.password = password;
|
|
this.identityCard = identityCard;
|
|
this.submissionDate = submissionDate;
|
|
}
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public String getFirstName() {
|
|
return firstName;
|
|
}
|
|
|
|
public void setFirstName(String firstName) {
|
|
this.firstName = firstName;
|
|
}
|
|
|
|
public String getLastName() {
|
|
return lastName;
|
|
}
|
|
|
|
public void setLastName(String lastName) {
|
|
this.lastName = lastName;
|
|
}
|
|
|
|
public String getAddress() {
|
|
return address;
|
|
}
|
|
|
|
public void setAddress(String address) {
|
|
this.address = address;
|
|
}
|
|
|
|
public String getEmail() {
|
|
return email;
|
|
}
|
|
|
|
public void setEmail(String email) {
|
|
this.email = email;
|
|
}
|
|
|
|
public String getCountry() {
|
|
return country;
|
|
}
|
|
|
|
public void setCountry(String country) {
|
|
this.country = country;
|
|
}
|
|
|
|
public Date getBirthDate() {
|
|
return birthDate;
|
|
}
|
|
|
|
public void setBirthDate(Date birthDate) {
|
|
this.birthDate = birthDate;
|
|
}
|
|
|
|
public long getCurriculumId() {
|
|
return curriculumId;
|
|
}
|
|
|
|
public void setCurriculumId(long curriculum) {
|
|
this.curriculumId = curriculum;
|
|
}
|
|
|
|
public RequestState getState() {
|
|
return state;
|
|
}
|
|
|
|
public void setState(RequestState state) {
|
|
this.state = state;
|
|
}
|
|
|
|
public String getProfilePicture() {
|
|
return profilePicture;
|
|
}
|
|
|
|
public void setProfilePicture(String profilePicture) {
|
|
this.profilePicture = profilePicture;
|
|
}
|
|
|
|
public String getPassword() {
|
|
return password;
|
|
}
|
|
|
|
public void setPassword(String password) {
|
|
this.password = password;
|
|
}
|
|
|
|
public String getIdentityCard() {
|
|
return identityCard;
|
|
}
|
|
|
|
public void setIdentityCard(String identityCard) {
|
|
this.identityCard = identityCard;
|
|
}
|
|
|
|
public Date getSubmissionDate() {
|
|
return submissionDate;
|
|
}
|
|
|
|
public void setSubmissionDate(Date submissionDate) {
|
|
this.submissionDate = submissionDate;
|
|
}
|
|
}
|