-
Notifications
You must be signed in to change notification settings - Fork 4
/
cn_holidays.go
213 lines (206 loc) · 4.49 KB
/
cn_holidays.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// China Holidays
package goutils
// ChinaHolidays 中国法定节假日
var ChinaHolidays = map[string]map[string]bool{
"2021": ChinaHolidays2021,
"2022": ChinaHolidays2022,
"2023": ChinaHolidays2023,
"2024": ChinaHolidays2024,
"2025": ChinaHolidays2025,
}
// ChinaHolidays2021 2021年中国法定节假日
var ChinaHolidays2021 = map[string]bool{
// 周五 ~ 周日 元旦
"2021-01-01": true,
"2021-01-02": true,
"2021-01-03": true,
// 周四 ~ 周三 春节
"2021-02-11": true,
"2021-02-12": true,
"2021-02-13": true,
"2021-02-14": true,
"2021-02-15": true,
"2021-02-16": true,
"2021-02-17": true,
// 周六 ~ 周一 清明节
"2021-04-03": true,
"2021-04-04": true,
"2021-04-05": true,
// 周六 ~ 周三 劳动节
"2021-05-03": true,
"2021-05-04": true,
"2021-05-05": true,
// 周六 ~ 周一 端午节
"2021-06-12": true,
"2021-06-13": true,
"2021-06-14": true,
// 周日 ~ 周二 中秋节
"2021-09-19": true,
"2021-09-20": true,
"2021-09-21": true,
// 周五 ~ 周四 国庆日
"2021-10-01": true,
"2021-10-02": true,
"2021-10-03": true,
"2021-10-04": true,
"2021-10-05": true,
"2021-10-06": true,
"2021-10-07": true,
}
// ChinaHolidays2022 2022年中国法定节假日
var ChinaHolidays2022 = map[string]bool{
// 周六 ~ 周一 元旦
"2022-01-01": true,
"2022-01-02": true,
"2022-01-03": true,
// 周一 ~ 周日 春节
"2022-01-31": true,
"2022-02-01": true,
"2022-02-02": true,
"2022-02-03": true,
"2022-02-04": true,
"2022-02-05": true,
"2022-02-06": true,
// 周日 ~ 周二 清明节
"2022-04-03": true,
"2022-04-04": true,
"2022-04-05": true,
// 周六 ~ 周三 劳动节
"2022-04-30": true,
"2022-05-01": true,
"2022-05-02": true,
"2022-05-03": true,
"2022-05-04": true,
// 周五 ~ 周日 端午节
"2022-06-03": true,
"2022-06-04": true,
"2022-06-05": true,
// 周六 ~ 周一 中秋节
"2022-09-10": true,
"2022-09-11": true,
"2022-09-12": true,
// 周六 ~ 周五 国庆日
"2022-10-01": true,
"2022-10-02": true,
"2022-10-03": true,
"2022-10-04": true,
"2022-10-05": true,
"2022-10-06": true,
"2022-10-07": true,
// 元旦
"2022-12-30": true,
"2022-12-31": true,
}
// ChinaHolidays2023 2023年中国法定节假日
var ChinaHolidays2023 = map[string]bool{
// 元旦
"2023-01-01": true,
// 春节
"2023-01-22": true,
"2023-01-23": true,
"2023-01-24": true,
"2023-01-25": true,
"2023-01-26": true,
"2023-01-27": true,
"2023-01-28": true,
// 清明节
"2023-04-03": true,
"2023-04-04": true,
"2023-04-05": true,
// 劳动节
"2023-04-29": true,
"2023-04-30": true,
"2023-05-01": true,
// 端午节
"2023-06-22": true,
"2023-06-23": true,
"2023-06-24": true,
// 中秋节
"2023-09-29": true,
"2023-09-30": true,
// 国庆日
"2023-10-01": true,
"2023-10-02": true,
"2023-10-03": true,
"2023-10-04": true,
"2023-10-05": true,
"2023-10-06": true,
}
// ChinaHolidays2024 2024年中国法定节假日
// https://www.gov.cn/zhengce/content/202310/content_6911527.htm
var ChinaHolidays2024 = map[string]bool{
// 元旦
"2024-01-01": true,
// 春节
"2024-02-10": true,
"2024-02-11": true,
"2024-02-12": true,
"2024-02-13": true,
"2024-02-14": true,
"2024-02-15": true,
"2024-02-16": true,
"2024-02-17": true,
// 清明节
"2024-04-04": true,
"2024-04-05": true,
"2024-04-06": true,
// 劳动节
"2024-05-01": true,
"2024-05-02": true,
"2024-05-03": true,
"2024-05-04": true,
"2024-05-05": true,
// 端午节
"2024-06-10": true,
// 中秋节
"2024-09-15": true,
"2024-09-16": true,
"2024-09-17": true,
// 国庆日
"2024-10-01": true,
"2024-10-02": true,
"2024-10-03": true,
"2024-10-04": true,
"2024-10-05": true,
"2024-10-06": true,
"2024-10-07": true,
}
// ChinaHolidays2025 2025年中国法定节假日
// https://www.gov.cn/zhengce/content/202411/content_6986382.htm
var ChinaHolidays2025 = map[string]bool{
// 元旦
"2025-01-01": true,
// 春节
"2025-01-28": true,
"2025-01-29": true,
"2025-01-30": true,
"2025-01-31": true,
"2025-02-01": true,
"2025-02-02": true,
"2025-02-03": true,
"2025-02-04": true,
// 清明节
"2025-04-04": true,
"2025-04-05": true,
"2025-04-06": true,
// 劳动节
"2025-05-01": true,
"2025-05-02": true,
"2025-05-03": true,
"2025-05-04": true,
"2025-05-05": true,
// 端午节
"2025-05-31": true,
"2025-06-01": true,
"2025-06-02": true,
// 国庆日
// 中秋节
"2025-10-01": true,
"2025-10-02": true,
"2025-10-03": true,
"2025-10-04": true,
"2025-10-05": true,
"2025-10-06": true, // 中秋
"2025-10-07": true,
"2025-10-08": true,
}