1
zj
2024-09-02 d78a33a6707fdd67069e6b1ff09493f3dc83e863
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
package com.nq.vo.stock.k;
 
 
import com.nq.utils.stock.sina.vo.SinaStockMinData;
 
import java.util.List;
 
 
public class MinDataVO {
 
    private String stockName;
 
    private String stockCode;
 
    private String gid;
 
    private List<SinaStockMinData> data;
 
 
    public void setStockName(String stockName) {
        this.stockName = stockName;
    }
 
    public void setStockCode(String stockCode) {
        this.stockCode = stockCode;
    }
 
    public void setGid(String gid) {
        this.gid = gid;
    }
 
    public void setData(List<SinaStockMinData> data) {
        this.data = data;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof MinDataVO)) return false;
        MinDataVO other = (MinDataVO) 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();
        if ((this$stockCode == null) ? (other$stockCode != null) : !this$stockCode.equals(other$stockCode))
            return false;
        Object this$gid = getGid(), other$gid = other.getGid();
        if ((this$gid == null) ? (other$gid != null) : !this$gid.equals(other$gid)) return false;
        Object this$data = getData(), other$data = other.getData();
        return !((this$data == null) ? (other$data != null) : !this$data.equals(other$data));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof MinDataVO;
    }
 
    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());
        Object $gid = getGid();
        result = result * 59 + (($gid == null) ? 43 : $gid.hashCode());
        Object $data = getData();
        return result * 59 + (($data == null) ? 43 : $data.hashCode());
    }
 
    public String toString() {
        return "MinDataVO(stockName=" + getStockName() + ", stockCode=" + getStockCode() + ", gid=" + getGid() + ", data=" + getData() + ")";
    }
 
 
    public String getStockName() {
        return this.stockName;
    }
 
 
    public String getStockCode() {
        return this.stockCode;
    }
 
 
    public String getGid() {
        return this.gid;
    }
 
 
    public List<SinaStockMinData> getData() {
        return this.data;
    }
 
}