yangys
2024-05-07 1251cce20deab6e388b1e2ff8cdddd2896db162b
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.qianwen.smartman.modules.dmpLog.vo;
 
public class DmpLogSearchVO {
    private String machineCode;
    private String affectedVariable;
    private String variableValue;
    private String startTime;
    private String endTime;
 
    public void setMachineCode(final String machineCode) {
        this.machineCode = machineCode;
    }
 
    public void setAffectedVariable(final String affectedVariable) {
        this.affectedVariable = affectedVariable;
    }
 
    public void setVariableValue(final String variableValue) {
        this.variableValue = variableValue;
    }
 
    public void setStartTime(final String startTime) {
        this.startTime = startTime;
    }
 
    public void setEndTime(final String endTime) {
        this.endTime = endTime;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DmpLogSearchVO) {
            DmpLogSearchVO other = (DmpLogSearchVO) o;
            if (other.canEqual(this)) {
                Object this$machineCode = getMachineCode();
                Object other$machineCode = other.getMachineCode();
                if (this$machineCode == null) {
                    if (other$machineCode != null) {
                        return false;
                    }
                } else if (!this$machineCode.equals(other$machineCode)) {
                    return false;
                }
                Object this$affectedVariable = getAffectedVariable();
                Object other$affectedVariable = other.getAffectedVariable();
                if (this$affectedVariable == null) {
                    if (other$affectedVariable != null) {
                        return false;
                    }
                } else if (!this$affectedVariable.equals(other$affectedVariable)) {
                    return false;
                }
                Object this$variableValue = getVariableValue();
                Object other$variableValue = other.getVariableValue();
                if (this$variableValue == null) {
                    if (other$variableValue != null) {
                        return false;
                    }
                } else if (!this$variableValue.equals(other$variableValue)) {
                    return false;
                }
                Object this$startTime = getStartTime();
                Object other$startTime = other.getStartTime();
                if (this$startTime == null) {
                    if (other$startTime != null) {
                        return false;
                    }
                } else if (!this$startTime.equals(other$startTime)) {
                    return false;
                }
                Object this$endTime = getEndTime();
                Object other$endTime = other.getEndTime();
                return this$endTime == null ? other$endTime == null : this$endTime.equals(other$endTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DmpLogSearchVO;
    }
 
    public int hashCode() {
        Object $machineCode = getMachineCode();
        int result = (1 * 59) + ($machineCode == null ? 43 : $machineCode.hashCode());
        Object $affectedVariable = getAffectedVariable();
        int result2 = (result * 59) + ($affectedVariable == null ? 43 : $affectedVariable.hashCode());
        Object $variableValue = getVariableValue();
        int result3 = (result2 * 59) + ($variableValue == null ? 43 : $variableValue.hashCode());
        Object $startTime = getStartTime();
        int result4 = (result3 * 59) + ($startTime == null ? 43 : $startTime.hashCode());
        Object $endTime = getEndTime();
        return (result4 * 59) + ($endTime == null ? 43 : $endTime.hashCode());
    }
 
    public String toString() {
        return "DmpLogSearchVO(machineCode=" + getMachineCode() + ", affectedVariable=" + getAffectedVariable() + ", variableValue=" + getVariableValue() + ", startTime=" + getStartTime() + ", endTime=" + getEndTime() + ")";
    }
 
    public String getMachineCode() {
        return this.machineCode;
    }
 
    public String getAffectedVariable() {
        return this.affectedVariable;
    }
 
    public String getVariableValue() {
        return this.variableValue;
    }
 
    public String getStartTime() {
        return this.startTime;
    }
 
    public String getEndTime() {
        return this.endTime;
    }
}