From 13a5f7b7c1bd7733f62f2e76e15ce3660441df98 Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期二, 01 三月 2022 15:36:00 +0800
Subject: [PATCH] [update] [todo 135940] 顧問預約未處理的網址,導到顧問登入頁面

---
 pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentNoticeSendDTO.java |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentNoticeSendDTO.java b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentNoticeSendDTO.java
index 9aa0fbf..2256fc8 100644
--- a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentNoticeSendDTO.java
+++ b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentNoticeSendDTO.java
@@ -1,5 +1,7 @@
 package com.pollex.pam.service.dto;
 
+import java.util.Date;
+
 public class AppointmentNoticeSendDTO {
 	
 	private String message;
@@ -7,6 +9,7 @@
 	private String email;
 	private String phone;
 //	private String noticeType;
+	private Date interviewDate;
 	
 	public String getMessage() {
 		return message;
@@ -38,6 +41,12 @@
 	public void setPhone(String phone) {
 		this.phone = phone;
 	}
+	public Date getInterviewDate() {
+		return interviewDate;
+	}
+	public void setInterviewDate(Date interviewDate) {
+		this.interviewDate = interviewDate;
+	}
 	
 	
 	

--
Gitblit v1.8.0