yangys
2025-11-18 8e944cfabb253fc2556588e308e282586043f7b0
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
package com.qianwen.smartman.modules.mdc.dto;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
import com.qianwen.smartman.modules.smis.entity.Workstation;
import com.qianwen.smartman.modules.mdc.entity.SuperAggregate;
import com.qianwen.smartman.modules.mdc.vo.StatisticsAnalysisQueryVO;
 
public class StatisticsWrapperDto {
    private List<? extends SuperAggregate> superAggregateList;
    private StatisticsAnalysisQueryVO statisticsAnalysisQueryVO;
    private List<IntervalDateDto> intervalDates;
    private IPage<Workstation> workstationPage;
    private Boolean isOutput;
 
    public void setSuperAggregateList(final List<? extends SuperAggregate> superAggregateList) {
        this.superAggregateList = superAggregateList;
    }
 
    public void setStatisticsAnalysisQueryVO(final StatisticsAnalysisQueryVO statisticsAnalysisQueryVO) {
        this.statisticsAnalysisQueryVO = statisticsAnalysisQueryVO;
    }
 
    public void setIntervalDates(final List<IntervalDateDto> intervalDates) {
        this.intervalDates = intervalDates;
    }
 
    public void setWorkstationPage(final IPage<Workstation> workstationPage) {
        this.workstationPage = workstationPage;
    }
 
    public void setIsOutput(final Boolean isOutput) {
        this.isOutput = isOutput;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof StatisticsWrapperDto) {
            StatisticsWrapperDto other = (StatisticsWrapperDto) o;
            if (other.canEqual(this)) {
                Object this$isOutput = getIsOutput();
                Object other$isOutput = other.getIsOutput();
                if (this$isOutput == null) {
                    if (other$isOutput != null) {
                        return false;
                    }
                } else if (!this$isOutput.equals(other$isOutput)) {
                    return false;
                }
                Object this$superAggregateList = getSuperAggregateList();
                Object other$superAggregateList = other.getSuperAggregateList();
                if (this$superAggregateList == null) {
                    if (other$superAggregateList != null) {
                        return false;
                    }
                } else if (!this$superAggregateList.equals(other$superAggregateList)) {
                    return false;
                }
                Object this$statisticsAnalysisQueryVO = getStatisticsAnalysisQueryVO();
                Object other$statisticsAnalysisQueryVO = other.getStatisticsAnalysisQueryVO();
                if (this$statisticsAnalysisQueryVO == null) {
                    if (other$statisticsAnalysisQueryVO != null) {
                        return false;
                    }
                } else if (!this$statisticsAnalysisQueryVO.equals(other$statisticsAnalysisQueryVO)) {
                    return false;
                }
                Object this$intervalDates = getIntervalDates();
                Object other$intervalDates = other.getIntervalDates();
                if (this$intervalDates == null) {
                    if (other$intervalDates != null) {
                        return false;
                    }
                } else if (!this$intervalDates.equals(other$intervalDates)) {
                    return false;
                }
                Object this$workstationPage = getWorkstationPage();
                Object other$workstationPage = other.getWorkstationPage();
                return this$workstationPage == null ? other$workstationPage == null : this$workstationPage.equals(other$workstationPage);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof StatisticsWrapperDto;
    }
 
    public int hashCode() {
        Object $isOutput = getIsOutput();
        int result = (1 * 59) + ($isOutput == null ? 43 : $isOutput.hashCode());
        Object $superAggregateList = getSuperAggregateList();
        int result2 = (result * 59) + ($superAggregateList == null ? 43 : $superAggregateList.hashCode());
        Object $statisticsAnalysisQueryVO = getStatisticsAnalysisQueryVO();
        int result3 = (result2 * 59) + ($statisticsAnalysisQueryVO == null ? 43 : $statisticsAnalysisQueryVO.hashCode());
        Object $intervalDates = getIntervalDates();
        int result4 = (result3 * 59) + ($intervalDates == null ? 43 : $intervalDates.hashCode());
        Object $workstationPage = getWorkstationPage();
        return (result4 * 59) + ($workstationPage == null ? 43 : $workstationPage.hashCode());
    }
 
    public String toString() {
        return "StatisticsWrapperDto(superAggregateList=" + getSuperAggregateList() + ", statisticsAnalysisQueryVO=" + getStatisticsAnalysisQueryVO() + ", intervalDates=" + getIntervalDates() + ", workstationPage=" + getWorkstationPage() + ", isOutput=" + getIsOutput() + ")";
    }
 
    public StatisticsWrapperDto(final List<? extends SuperAggregate> superAggregateList, final StatisticsAnalysisQueryVO statisticsAnalysisQueryVO, final List<IntervalDateDto> intervalDates, final IPage<Workstation> workstationPage, final Boolean isOutput) {
        this.superAggregateList = superAggregateList;
        this.statisticsAnalysisQueryVO = statisticsAnalysisQueryVO;
        this.intervalDates = intervalDates;
        this.workstationPage = workstationPage;
        this.isOutput = isOutput;
    }
 
    public StatisticsWrapperDto() {
    }
 
    public List<? extends SuperAggregate> getSuperAggregateList() {
        return this.superAggregateList;
    }
 
    public StatisticsAnalysisQueryVO getStatisticsAnalysisQueryVO() {
        return this.statisticsAnalysisQueryVO;
    }
 
    public List<IntervalDateDto> getIntervalDates() {
        return this.intervalDates;
    }
 
    public IPage<Workstation> getWorkstationPage() {
        return this.workstationPage;
    }
 
    public Boolean getIsOutput() {
        return this.isOutput;
    }
}