From aa0f9381d424b98e86845c6da21e2fd8640fe056 Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期一, 21 二月 2022 18:32:45 +0800
Subject: [PATCH] [update] 若顧問狀態非啟用時,則搜尋及推薦會找不到該顧問

---
 pamapi/src/main/java/com/pollex/pam/config/Constants.java |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/config/Constants.java b/pamapi/src/main/java/com/pollex/pam/config/Constants.java
index ead5fc8..87dd25b 100644
--- a/pamapi/src/main/java/com/pollex/pam/config/Constants.java
+++ b/pamapi/src/main/java/com/pollex/pam/config/Constants.java
@@ -11,5 +11,26 @@
     public static final String SYSTEM = "system";
     public static final String DEFAULT_LANGUAGE = "zh-tw";
 
+    /**
+     * �閰勗�mail�撱箇���(T)敺�憭抵�������
+     * �����摰2
+     */
+    public static final int APPOINTMENT_PENDING_PHONE_INTERVAL = 2;
+    public static final int APPOINTMENT_PENDING_EMAIL_INTERVAL = 2;
+
+    /**
+     * �閰勗�mail�撱箇���(T)敺�憭拇�◤閬������嚗憭拇甈⊥����策憿批��
+     * �敺�憭�(T+N+1)嚗停���甈∠策摰X�� 閰脤“���敹�瘜������閬���
+     */
+    public static final int APPOINTMENT_EXPIRING_PHONE_INTERVAL = APPOINTMENT_PENDING_PHONE_INTERVAL + 1;
+    public static final int APPOINTMENT_EXPIRING_EMAIL_INTERVAL = APPOINTMENT_PENDING_EMAIL_INTERVAL + 1;
+
+    /**
+     * �摰X��活���
+     */
+    public static final int SEND_EXPIRING_NOTIFY_LIMIT = 1;
+
+    public static final String SPRING_PROFILE_POLLEX_DEVELOPMENT = "pollex";
+
     private Constants() {}
 }

--
Gitblit v1.8.0