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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package com.qianwen.smartman.modules.dmpLog.entity;
 
public class SignalLog {
    public String TraceId;
    public Integer Type;
    public String MachineCode;
    public String MachineName;
    public String AffectedVariable;
    public String VariableValue;
    public Integer Status;
    public Long TimeStamp;
    public Integer collectMonth;
 
    public void setTraceId(final String TraceId) {
        this.TraceId = TraceId;
    }
 
    public void setType(final Integer Type) {
        this.Type = Type;
    }
 
    public void setMachineCode(final String MachineCode) {
        this.MachineCode = MachineCode;
    }
 
    public void setMachineName(final String MachineName) {
        this.MachineName = MachineName;
    }
 
    public void setAffectedVariable(final String AffectedVariable) {
        this.AffectedVariable = AffectedVariable;
    }
 
    public void setVariableValue(final String VariableValue) {
        this.VariableValue = VariableValue;
    }
 
    public void setStatus(final Integer Status) {
        this.Status = Status;
    }
 
    public void setTimeStamp(final Long TimeStamp) {
        this.TimeStamp = TimeStamp;
    }
 
    public void setCollectMonth(final Integer collectMonth) {
        this.collectMonth = collectMonth;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof SignalLog) {
            SignalLog other = (SignalLog) o;
            if (other.canEqual(this)) {
                Object this$Type = getType();
                Object other$Type = other.getType();
                if (this$Type == null) {
                    if (other$Type != null) {
                        return false;
                    }
                } else if (!this$Type.equals(other$Type)) {
                    return false;
                }
                Object this$Status = getStatus();
                Object other$Status = other.getStatus();
                if (this$Status == null) {
                    if (other$Status != null) {
                        return false;
                    }
                } else if (!this$Status.equals(other$Status)) {
                    return false;
                }
                Object this$TimeStamp = getTimeStamp();
                Object other$TimeStamp = other.getTimeStamp();
                if (this$TimeStamp == null) {
                    if (other$TimeStamp != null) {
                        return false;
                    }
                } else if (!this$TimeStamp.equals(other$TimeStamp)) {
                    return false;
                }
                Object this$collectMonth = getCollectMonth();
                Object other$collectMonth = other.getCollectMonth();
                if (this$collectMonth == null) {
                    if (other$collectMonth != null) {
                        return false;
                    }
                } else if (!this$collectMonth.equals(other$collectMonth)) {
                    return false;
                }
                Object this$TraceId = getTraceId();
                Object other$TraceId = other.getTraceId();
                if (this$TraceId == null) {
                    if (other$TraceId != null) {
                        return false;
                    }
                } else if (!this$TraceId.equals(other$TraceId)) {
                    return false;
                }
                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$MachineName = getMachineName();
                Object other$MachineName = other.getMachineName();
                if (this$MachineName == null) {
                    if (other$MachineName != null) {
                        return false;
                    }
                } else if (!this$MachineName.equals(other$MachineName)) {
                    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();
                return this$VariableValue == null ? other$VariableValue == null : this$VariableValue.equals(other$VariableValue);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof SignalLog;
    }
 
    public int hashCode() {
        Object $Type = getType();
        int result = (1 * 59) + ($Type == null ? 43 : $Type.hashCode());
        Object $Status = getStatus();
        int result2 = (result * 59) + ($Status == null ? 43 : $Status.hashCode());
        Object $TimeStamp = getTimeStamp();
        int result3 = (result2 * 59) + ($TimeStamp == null ? 43 : $TimeStamp.hashCode());
        Object $collectMonth = getCollectMonth();
        int result4 = (result3 * 59) + ($collectMonth == null ? 43 : $collectMonth.hashCode());
        Object $TraceId = getTraceId();
        int result5 = (result4 * 59) + ($TraceId == null ? 43 : $TraceId.hashCode());
        Object $MachineCode = getMachineCode();
        int result6 = (result5 * 59) + ($MachineCode == null ? 43 : $MachineCode.hashCode());
        Object $MachineName = getMachineName();
        int result7 = (result6 * 59) + ($MachineName == null ? 43 : $MachineName.hashCode());
        Object $AffectedVariable = getAffectedVariable();
        int result8 = (result7 * 59) + ($AffectedVariable == null ? 43 : $AffectedVariable.hashCode());
        Object $VariableValue = getVariableValue();
        return (result8 * 59) + ($VariableValue == null ? 43 : $VariableValue.hashCode());
    }
 
    public String toString() {
        return "SignalLog(TraceId=" + getTraceId() + ", Type=" + getType() + ", MachineCode=" + getMachineCode() + ", MachineName=" + getMachineName() + ", AffectedVariable=" + getAffectedVariable() + ", VariableValue=" + getVariableValue() + ", Status=" + getStatus() + ", TimeStamp=" + getTimeStamp() + ", collectMonth=" + getCollectMonth() + ")";
    }
 
    public SignalLog() {
    }
 
    public SignalLog(final String TraceId, final Integer Type, final String MachineCode, final String MachineName, final String AffectedVariable, final String VariableValue, final Integer Status, final Long TimeStamp, final Integer collectMonth) {
        this.TraceId = TraceId;
        this.Type = Type;
        this.MachineCode = MachineCode;
        this.MachineName = MachineName;
        this.AffectedVariable = AffectedVariable;
        this.VariableValue = VariableValue;
        this.Status = Status;
        this.TimeStamp = TimeStamp;
        this.collectMonth = collectMonth;
    }
 
    public String getTraceId() {
        return this.TraceId;
    }
 
    public Integer getType() {
        return this.Type;
    }
 
    public String getMachineCode() {
        return this.MachineCode;
    }
 
    public String getMachineName() {
        return this.MachineName;
    }
 
    public String getAffectedVariable() {
        return this.AffectedVariable;
    }
 
    public String getVariableValue() {
        return this.VariableValue;
    }
 
    public Integer getStatus() {
        return this.Status;
    }
 
    public Long getTimeStamp() {
        return this.TimeStamp;
    }
 
    public Integer getCollectMonth() {
        return this.collectMonth;
    }
}