mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.dg.core.util.presence;
 
import com.iceyyy.icework.presence.Year20xx;
 
import java.util.HashMap;
import java.util.Map;
 
public class Year2020 implements Year20xx {
 
    @Override
    public Map<String, Boolean> getYearMap() {
        Map<String, Boolean> map = new HashMap<String, Boolean>();
        map.put("20200101", true); // 休
        map.put("20200119", false); // 班
        map.put("20200124", true); // 休
        map.put("20200127", true); // 休
        map.put("20200128", true); // 休
        map.put("20200129", true); // 休
        map.put("20200130", true); // 休
        map.put("20200131", true); // 休(+)
        // map.put("20200201", false); // 班
        map.put("20200406", true); // 休
        map.put("20200426", false); // 班
        map.put("20200501", true); // 休
        map.put("20200504", true); // 休
        map.put("20200505", true); // 休
        map.put("20200509", false); // 班
        map.put("20200625", true); // 休
        map.put("20200626", true); // 休
        map.put("20200628", false); // 班
        map.put("20200927", false); // 班
        map.put("20201001", true); // 休
        map.put("20201002", true); // 休
        map.put("20201005", true); // 休
        map.put("20201006", true); // 休
        map.put("20201007", true); // 休
        map.put("20201008", true); // 休
        map.put("20201010", false); // 班
        return map;
    }
 
}