yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
package com.qianwen.smartman.modules.mdc.vo;
 
import io.swagger.annotations.ApiModelProperty;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/OutputStatisticsQueryVO.class */
public class OutputStatisticsQueryVO extends StatisticsQueryVO {
    private static final long serialVersionUID = 8887294568778572201L;
    @ApiModelProperty("查询类型 0-柱状图  1-表格")
    private Integer queryType;
 
    @Override // org.springblade.modules.mdc.vo.StatisticsQueryVO
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof OutputStatisticsQueryVO) {
            OutputStatisticsQueryVO other = (OutputStatisticsQueryVO) o;
            if (other.canEqual(this) && super.equals(o)) {
                Object this$queryType = getQueryType();
                Object other$queryType = other.getQueryType();
                return this$queryType == null ? other$queryType == null : this$queryType.equals(other$queryType);
            }
            return false;
        }
        return false;
    }
 
    @Override // org.springblade.modules.mdc.vo.StatisticsQueryVO
    protected boolean canEqual(final Object other) {
        return other instanceof OutputStatisticsQueryVO;
    }
 
    @Override // org.springblade.modules.mdc.vo.StatisticsQueryVO
    public int hashCode() {
        int result = super.hashCode();
        Object $queryType = getQueryType();
        return (result * 59) + ($queryType == null ? 43 : $queryType.hashCode());
    }
 
    public OutputStatisticsQueryVO setQueryType(final Integer queryType) {
        this.queryType = queryType;
        return this;
    }
 
    @Override // org.springblade.modules.mdc.vo.StatisticsQueryVO
    public String toString() {
        return "OutputStatisticsQueryVO(queryType=" + getQueryType() + ")";
    }
 
    public Integer getQueryType() {
        return this.queryType;
    }
}