From bc4cd54c0120ea49ecd6cb95fae00fa6da001324 Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期四, 16 十二月 2021 14:53:17 +0800
Subject: [PATCH] fixed: [顧問-我的已聯繫預約單列表] search 功能無法使用的錯誤

---
 pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCreateDTO.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCreateDTO.java b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCreateDTO.java
index 9c03b5d..3c566ab 100644
--- a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCreateDTO.java
+++ b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCreateDTO.java
@@ -6,7 +6,7 @@
     private String email;
     private String contactType; //�蝯⊥撘�
     private String gender;
-    private int age;
+    private String age;
     private String job;
     private String requirement;
     private String hopeContactTime; //撣�蝯∠����
@@ -61,10 +61,10 @@
 	public void setOtherRequirement(String otherRequirement) {
 		this.otherRequirement = otherRequirement;
 	}
-	public int getAge() {
+	public String getAge() {
 		return age;
 	}
-	public void setAge(int age) {
+	public void setAge(String age) {
 		this.age = age;
 	}
 	public String getAgentNo() {

--
Gitblit v1.8.0