yangys
2024-03-31 53c8d3e3bd3596132b362f20e52aef380d493a84
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
package com.qianwen.smartman.modules.mdc.dto;
 
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/dto/IntervalDateDto.class */
public class IntervalDateDto {
    private Integer year;
    private List<Integer> weekList;
    private List<Integer> monthList;
    private List<String> dayList;
 
    public void setYear(final Integer year) {
        this.year = year;
    }
 
    public void setWeekList(final List<Integer> weekList) {
        this.weekList = weekList;
    }
 
    public void setMonthList(final List<Integer> monthList) {
        this.monthList = monthList;
    }
 
    public void setDayList(final List<String> dayList) {
        this.dayList = dayList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof IntervalDateDto) {
            IntervalDateDto other = (IntervalDateDto) o;
            if (other.canEqual(this)) {
                Object this$year = getYear();
                Object other$year = other.getYear();
                if (this$year == null) {
                    if (other$year != null) {
                        return false;
                    }
                } else if (!this$year.equals(other$year)) {
                    return false;
                }
                Object this$weekList = getWeekList();
                Object other$weekList = other.getWeekList();
                if (this$weekList == null) {
                    if (other$weekList != null) {
                        return false;
                    }
                } else if (!this$weekList.equals(other$weekList)) {
                    return false;
                }
                Object this$monthList = getMonthList();
                Object other$monthList = other.getMonthList();
                if (this$monthList == null) {
                    if (other$monthList != null) {
                        return false;
                    }
                } else if (!this$monthList.equals(other$monthList)) {
                    return false;
                }
                Object this$dayList = getDayList();
                Object other$dayList = other.getDayList();
                return this$dayList == null ? other$dayList == null : this$dayList.equals(other$dayList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof IntervalDateDto;
    }
 
    public int hashCode() {
        Object $year = getYear();
        int result = (1 * 59) + ($year == null ? 43 : $year.hashCode());
        Object $weekList = getWeekList();
        int result2 = (result * 59) + ($weekList == null ? 43 : $weekList.hashCode());
        Object $monthList = getMonthList();
        int result3 = (result2 * 59) + ($monthList == null ? 43 : $monthList.hashCode());
        Object $dayList = getDayList();
        return (result3 * 59) + ($dayList == null ? 43 : $dayList.hashCode());
    }
 
    public String toString() {
        return "IntervalDateDto(year=" + getYear() + ", weekList=" + getWeekList() + ", monthList=" + getMonthList() + ", dayList=" + getDayList() + ")";
    }
 
    public Integer getYear() {
        return this.year;
    }
 
    public List<Integer> getWeekList() {
        return this.weekList;
    }
 
    public List<Integer> getMonthList() {
        return this.monthList;
    }
 
    public List<String> getDayList() {
        return this.dayList;
    }
}