From 653566dd3199a36fcff30ea9b9f31087e59ce3ed Mon Sep 17 00:00:00 2001
From: Jack <jack.su@pollex.com.tw>
Date: 星期四, 25 十一月 2021 21:32:39 +0800
Subject: [PATCH] [UPDATE] 新增重複帳號註冊的檢核,直接拋出500的錯誤訊息 [UPDATE] 調整dev設定檔(auto-commit=false),解決mvnw jdbc連線失敗的問題

---
 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