From 2f6a687c97ca0f5d914efe4299586d23a74a1ac9 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期三, 22 十二月 2021 12:12:18 +0800 Subject: [PATCH] [update] 修正顧問個人背景資料型態 --- pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java b/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java index 8f9876a..1fb6031 100644 --- a/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java +++ b/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java @@ -19,6 +19,8 @@ private String eServiceLoginFunc; private String eServiceLoginSys; private SMS sms; + private Email email; + private String fileFolderPath; public boolean isMockLogin() { return mockLogin; @@ -84,6 +86,14 @@ this.sms = sms; } + public Email getEmail() { + return email; + } + + public void setEmail(Email email) { + this.email = email; + } + public static class SMS { private String url; private String sourceCode; @@ -122,4 +132,34 @@ this.smsType = smsType; } } + + public static class Email { + private String url; + private String functionId; + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public String getFunctionId() { + return functionId; + } + + public void setFunctionId(String functionId) { + this.functionId = functionId; + } + } + public String getFileFolderPath() { + return fileFolderPath; + } + + public void setFileFolderPath(String fileFolderPath) { + this.fileFolderPath = fileFolderPath; + } + + } -- Gitblit v1.8.0