From 2f0e71d3d73b71cba5a0caebfdb9ba79722989c0 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 27 一月 2022 14:54:38 +0800 Subject: [PATCH] [update] [todo 134826, 134662] 調整顧問資料格式、棄用搜尋並改將其功能改到前端算匹配度 --- pamapi/src/main/java/com/pollex/pam/config/Constants.java | 19 +++++++++++++++++++ 1 files changed, 19 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 20ea2f8..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,6 +11,25 @@ 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