package com.pollex.pam.service.dto;
|
|
import java.time.Instant;
|
import java.util.Date;
|
|
public class InterviewRecordDTO {
|
|
private Long id;
|
private String content;
|
private Instant createdDate;
|
private Instant lastModifiedDate;
|
private String createdBy;
|
private String lastModifiedBy;
|
private Date interviewDate;
|
private Long appointmentId;
|
|
public Long getId() {
|
return id;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
public String getContent() {
|
return content;
|
}
|
public void setContent(String content) {
|
this.content = content;
|
}
|
public Instant getCreatedDate() {
|
return createdDate;
|
}
|
public void setCreatedDate(Instant createdDate) {
|
this.createdDate = createdDate;
|
}
|
public Instant getLastModifiedDate() {
|
return lastModifiedDate;
|
}
|
public void setLastModifiedDate(Instant lastModifiedDate) {
|
this.lastModifiedDate = lastModifiedDate;
|
}
|
public String getCreatedBy() {
|
return createdBy;
|
}
|
public void setCreatedBy(String createdBy) {
|
this.createdBy = createdBy;
|
}
|
public String getLastModifiedBy() {
|
return lastModifiedBy;
|
}
|
public void setLastModifiedBy(String lastModifiedBy) {
|
this.lastModifiedBy = lastModifiedBy;
|
}
|
public Date getInterviewDate() {
|
return interviewDate;
|
}
|
public void setInterviewDate(Date interviewDate) {
|
this.interviewDate = interviewDate;
|
}
|
public Long getAppointmentId() {
|
return appointmentId;
|
}
|
public void setAppointmentId(Long appointmentId) {
|
this.appointmentId = appointmentId;
|
}
|
|
|
|
|
}
|