package com.pollex.pam.service.dto;
|
|
import java.util.Date;
|
|
public class AppointmentNoticeSendDTO {
|
|
private String message;
|
private Long appointmentId;
|
private String email;
|
private String phone;
|
// private String noticeType;
|
private Date interviewDate;
|
|
public String getMessage() {
|
return message;
|
}
|
public void setMessage(String message) {
|
this.message = message;
|
}
|
public Long getAppointmentId() {
|
return appointmentId;
|
}
|
public void setAppointmentId(Long appointmentId) {
|
this.appointmentId = appointmentId;
|
}
|
// public String getNoticeType() {
|
// return noticeType;
|
// }
|
// public void setNoticeType(String noticeType) {
|
// this.noticeType = noticeType;
|
// }
|
public String getEmail() {
|
return email;
|
}
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
public String getPhone() {
|
return phone;
|
}
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
public Date getInterviewDate() {
|
return interviewDate;
|
}
|
public void setInterviewDate(Date interviewDate) {
|
this.interviewDate = interviewDate;
|
}
|
|
|
|
}
|