소스 검색

2025年节假日

QuYueTing 5 달 전
부모
커밋
f470830895

+ 18 - 0
fhKeeper/formulahousekeeper/management-platform/src/main/java/com/management/platform/util/WorkDayCalculateUtils.java

@@ -109,6 +109,24 @@ public class WorkDayCalculateUtils {
                 "2024-10-01","2024-10-02","2024-10-03","2024-10-04","2024-10-07",//国庆节
         });
         YEAR_DEFINE.put("2024", map2024);
+
+        HashMap<String, String[]> map2025 = new HashMap<>();
+        //除了周末的特殊工作日
+        map2025.put(KEY_SPECIAL_WORK_DAYS, new String[]{"2025-01-26",//春节
+                "2025-02-08",//春节
+                "2025-04-27",//劳动节
+                "2025-09-28","2025-10-11",//国庆节
+        });
+        //除了周末的特殊休息日,例如国庆中秋春节
+        map2025.put(KEY_SPECIAL_REST_DAYS, new String[]{
+                "2025-01-01",//元旦
+                "2025-01-28", "2025-01-29", "2025-01-30", "2025-01-31", "2025-02-03","2025-02-04",//春节
+                "2025-04-04",//清明节
+                "2025-05-01","2025-05-02","2025-05-05",//劳动节
+                "2025-06-02",//端午节
+                "2025-10-01","2025-10-02","2025-10-03","2025-10-06","2025-10-07","2025-10-08",//国庆节
+        });
+        YEAR_DEFINE.put("2025", map2025);
     }
 
     /**