From ac594e4efb30ba28776d74b0fb08ab34d7c32023 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 30 十二月 2021 15:20:08 +0800 Subject: [PATCH] Merge branch 'Phase2' --- pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java | 18 ++++++++++++++++++ 1 files changed, 18 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 fc204ce..d4b2b36 100644 --- a/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java +++ b/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java @@ -22,6 +22,7 @@ private boolean sendNotifyMsg; private SMS sms; private Email email; + private String fileFolderPath; public boolean isMockLogin() { return mockLogin; @@ -116,6 +117,7 @@ private String sourceCode; private String sender; private String smsType; + private String subject; public String getUrl() { return url; @@ -148,6 +150,14 @@ public void setSmsType(String smsType) { this.smsType = smsType; } + + public String getSubject() { + return subject; + } + + public void setSubject(String subject) { + this.subject = subject; + } } public static class Email { @@ -179,4 +189,12 @@ this.senderEmail = senderEmail; } } + public String getFileFolderPath() { + return fileFolderPath; + } + + public void setFileFolderPath(String fileFolderPath) { + this.fileFolderPath = fileFolderPath; + } + } -- Gitblit v1.8.0