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
package com.qianwen.smartman.modules.system.vo;
 
import java.io.Serializable;
import java.util.List;
import com.qianwen.smartman.modules.system.entity.SeriesItem;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/ChartSeriesDataVO.class */
public class ChartSeriesDataVO<T extends Serializable> {
    private List<?> categories;
    private List<SeriesItem<T>> series;
    private List<List<?>> categoriesExtra;
 
    public void setCategories(final List<?> categories) {
        this.categories = categories;
    }
 
    public void setSeries(final List<SeriesItem<T>> series) {
        this.series = series;
    }
 
    public void setCategoriesExtra(final List<List<?>> categoriesExtra) {
        this.categoriesExtra = categoriesExtra;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ChartSeriesDataVO) {
            ChartSeriesDataVO<?> other = (ChartSeriesDataVO) o;
            if (other.canEqual(this)) {
                Object this$categories = getCategories();
                Object other$categories = other.getCategories();
                if (this$categories == null) {
                    if (other$categories != null) {
                        return false;
                    }
                } else if (!this$categories.equals(other$categories)) {
                    return false;
                }
                Object this$series = getSeries();
                Object other$series = other.getSeries();
                if (this$series == null) {
                    if (other$series != null) {
                        return false;
                    }
                } else if (!this$series.equals(other$series)) {
                    return false;
                }
                Object this$categoriesExtra = getCategoriesExtra();
                Object other$categoriesExtra = other.getCategoriesExtra();
                return this$categoriesExtra == null ? other$categoriesExtra == null : this$categoriesExtra.equals(other$categoriesExtra);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ChartSeriesDataVO;
    }
 
    public int hashCode() {
        Object $categories = getCategories();
        int result = (1 * 59) + ($categories == null ? 43 : $categories.hashCode());
        Object $series = getSeries();
        int result2 = (result * 59) + ($series == null ? 43 : $series.hashCode());
        Object $categoriesExtra = getCategoriesExtra();
        return (result2 * 59) + ($categoriesExtra == null ? 43 : $categoriesExtra.hashCode());
    }
 
    public String toString() {
        return "ChartSeriesDataVO(categories=" + getCategories() + ", series=" + getSeries() + ", categoriesExtra=" + getCategoriesExtra() + ")";
    }
 
    public ChartSeriesDataVO(final List<?> categories, final List<SeriesItem<T>> series, final List<List<?>> categoriesExtra) {
        this.categories = categories;
        this.series = series;
        this.categoriesExtra = categoriesExtra;
    }
 
    public ChartSeriesDataVO() {
    }
 
    public List<?> getCategories() {
        return this.categories;
    }
 
    public List<SeriesItem<T>> getSeries() {
        return this.series;
    }
 
    public List<List<?>> getCategoriesExtra() {
        return this.categoriesExtra;
    }
}