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
package com.nq.vo.agent;
 
 
import java.math.BigDecimal;
 
public class AgentIncomeVO {
 
    private Integer orderSize;
 
    private BigDecimal orderFeeAmt;
 
    private BigDecimal orderProfitAndLose;
 
    private BigDecimal orderAllAmt;
 
 
    public void setOrderSize(Integer orderSize) {
        this.orderSize = orderSize;
    }
 
    public void setOrderFeeAmt(BigDecimal orderFeeAmt) {
        this.orderFeeAmt = orderFeeAmt;
    }
 
    public void setOrderProfitAndLose(BigDecimal orderProfitAndLose) {
        this.orderProfitAndLose = orderProfitAndLose;
    }
 
    public void setOrderAllAmt(BigDecimal orderAllAmt) {
        this.orderAllAmt = orderAllAmt;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof AgentIncomeVO)) return false;
        AgentIncomeVO other = (AgentIncomeVO) o;
        if (!other.canEqual(this)) return false;
        Object this$orderSize = getOrderSize(), other$orderSize = other.getOrderSize();
        if ((this$orderSize == null) ? (other$orderSize != null) : !this$orderSize.equals(other$orderSize))
            return false;
        Object this$orderFeeAmt = getOrderFeeAmt(), other$orderFeeAmt = other.getOrderFeeAmt();
        if ((this$orderFeeAmt == null) ? (other$orderFeeAmt != null) : !this$orderFeeAmt.equals(other$orderFeeAmt))
            return false;
        Object this$orderProfitAndLose = getOrderProfitAndLose(), other$orderProfitAndLose = other.getOrderProfitAndLose();
        if ((this$orderProfitAndLose == null) ? (other$orderProfitAndLose != null) : !this$orderProfitAndLose.equals(other$orderProfitAndLose))
            return false;
        Object this$orderAllAmt = getOrderAllAmt(), other$orderAllAmt = other.getOrderAllAmt();
        return !((this$orderAllAmt == null) ? (other$orderAllAmt != null) : !this$orderAllAmt.equals(other$orderAllAmt));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof AgentIncomeVO;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $orderSize = getOrderSize();
        result = result * 59 + (($orderSize == null) ? 43 : $orderSize.hashCode());
        Object $orderFeeAmt = getOrderFeeAmt();
        result = result * 59 + (($orderFeeAmt == null) ? 43 : $orderFeeAmt.hashCode());
        Object $orderProfitAndLose = getOrderProfitAndLose();
        result = result * 59 + (($orderProfitAndLose == null) ? 43 : $orderProfitAndLose.hashCode());
        Object $orderAllAmt = getOrderAllAmt();
        return result * 59 + (($orderAllAmt == null) ? 43 : $orderAllAmt.hashCode());
    }
 
    public String toString() {
        return "AgentIncomeVO(orderSize=" + getOrderSize() + ", orderFeeAmt=" + getOrderFeeAmt() + ", orderProfitAndLose=" + getOrderProfitAndLose() + ", orderAllAmt=" + getOrderAllAmt() + ")";
    }
 
 
    public Integer getOrderSize() {
        return this.orderSize;
    }
 
 
    public BigDecimal getOrderFeeAmt() {
        return this.orderFeeAmt;
    }
 
 
    public BigDecimal getOrderProfitAndLose() {
        return this.orderProfitAndLose;
    }
 
 
    public BigDecimal getOrderAllAmt() {
        return this.orderAllAmt;
    }
 
}