| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.Instant; |
| | | import java.util.Date; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | |
| | | |
| | | @CreatedDate |
| | | @Column(name = "created_date", updatable = false) |
| | | // @JsonIgnore |
| | | private Instant createdDate = Instant.now(); |
| | | |
| | | @Column(name = "interview_date") |
| | | private Date interviewDate; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | |
| | | this.createdDate = createdDate; |
| | | } |
| | | |
| | | public Date getInterviewDate() { |
| | | return interviewDate; |
| | | } |
| | | |
| | | public void setInterviewDate(Date interviewDate) { |
| | | this.interviewDate = interviewDate; |
| | | } |
| | | |
| | | |
| | | |
| | | |