zj
2024-06-03 4afe73cb84c5a609662b8b4ee20693de9b86b9a3
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
package com.nq.vo.stock.k.echarts;
 
import java.util.Arrays;
 
public class EchartsDataVO {
    private String stockName;
    private String stockCode;
    private double[][] values;
    private Object[][] volumes;
    private String[] date;
 
    public void setStockName(String stockName) {
        this.stockName = stockName;
    }
 
    public void setStockCode(String stockCode) {
        this.stockCode = stockCode;
    }
 
    public void setValues(double[][] values) {
        this.values = values;
    }
 
    public void setVolumes(Object[][] volumes) {
        this.volumes = volumes;
    }
 
    public void setDate(String[] date) {
        this.date = date;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof EchartsDataVO)) return false;
        EchartsDataVO other = (EchartsDataVO) o;
        if (!other.canEqual(this)) return false;
        Object this$stockName = getStockName(), other$stockName = other.getStockName();
        if ((this$stockName == null) ? (other$stockName != null) : !this$stockName.equals(other$stockName))
            return false;
        Object this$stockCode = getStockCode(), other$stockCode = other.getStockCode();
        return ((this$stockCode == null) ? (other$stockCode != null) : !this$stockCode.equals(other$stockCode)) ? false : (!Arrays.deepEquals(getValues(), other.getValues()) ? false : (!Arrays.deepEquals(getVolumes(), other.getVolumes()) ? false : (!!Arrays.deepEquals(getDate(), other.getDate()))));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof EchartsDataVO;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $stockName = getStockName();
        result = result * 59 + (($stockName == null) ? 43 : $stockName.hashCode());
        Object $stockCode = getStockCode();
        result = result * 59 + (($stockCode == null) ? 43 : $stockCode.hashCode());
        result = result * 59 + Arrays.deepHashCode(getValues());
        result = result * 59 + Arrays.deepHashCode(getVolumes());
        return result * 59 + Arrays.deepHashCode(getDate());
    }
 
    public String toString() {
        return "EchartsDataVO(stockName=" + getStockName() + ", stockCode=" + getStockCode() + ", values=" + Arrays.deepToString(getValues()) + ", volumes=" + Arrays.deepToString(getVolumes()) + ", date=" + Arrays.deepToString(getDate()) + ")";
    }
 
 
    public String getStockName() {
        return this.stockName;
    }
 
 
    public String getStockCode() {
        return this.stockCode;
    }
 
 
    public double[][] getValues() {
        return this.values;
    }
 
    public Object[][] getVolumes() {
        return this.volumes;
    }
 
    public String[] getDate() {
        return this.date;
    }
}