zj
2026-01-14 3a1977e8cc0c5fffbc6490f220f30116af6cce86
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
package com.nq.vo.stock;
 
 
import java.util.List;
 
 
public class MarketVOResult {
 
    List<MarketVO> market;
 
 
    public String toString() {
        return "MarketVOResult(market=" + getMarket() + ")";
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $market = getMarket();
        return result * 59 + (($market == null) ? 43 : $market.hashCode());
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof MarketVOResult;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof MarketVOResult)) return false;
        MarketVOResult other = (MarketVOResult) o;
        if (!other.canEqual(this)) return false;
        Object this$market = getMarket(), other$market = other.getMarket();
        return !((this$market == null) ? (other$market != null) : !this$market.equals(other$market));
    }
 
    public void setMarket(List<MarketVO> market) {
        this.market = market;
    }
 
 
    public List<MarketVO> getMarket() {
        return this.market;
    }
 
}