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
package com.qianwen.smartman.modules.dmpLog.entity;
 
public class SignalMethodTimeLog {
    public String TraceId;
    public Integer Type;
    public String MachineCode;
    public Long TimeStamp;
    public String MethodName;
    public String MethodDescription;
    public Long SpendTimeSeconds;
    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 setTimeStamp(final Long TimeStamp) {
        this.TimeStamp = TimeStamp;
    }
 
    public void setMethodName(final String MethodName) {
        this.MethodName = MethodName;
    }
 
    public void setMethodDescription(final String MethodDescription) {
        this.MethodDescription = MethodDescription;
    }
 
    public void setSpendTimeSeconds(final Long SpendTimeSeconds) {
        this.SpendTimeSeconds = SpendTimeSeconds;
    }
 
    public void setCollectMonth(final Integer collectMonth) {
        this.collectMonth = collectMonth;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof SignalMethodTimeLog) {
            SignalMethodTimeLog other = (SignalMethodTimeLog) 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$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$SpendTimeSeconds = getSpendTimeSeconds();
                Object other$SpendTimeSeconds = other.getSpendTimeSeconds();
                if (this$SpendTimeSeconds == null) {
                    if (other$SpendTimeSeconds != null) {
                        return false;
                    }
                } else if (!this$SpendTimeSeconds.equals(other$SpendTimeSeconds)) {
                    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$MethodName = getMethodName();
                Object other$MethodName = other.getMethodName();
                if (this$MethodName == null) {
                    if (other$MethodName != null) {
                        return false;
                    }
                } else if (!this$MethodName.equals(other$MethodName)) {
                    return false;
                }
                Object this$MethodDescription = getMethodDescription();
                Object other$MethodDescription = other.getMethodDescription();
                return this$MethodDescription == null ? other$MethodDescription == null : this$MethodDescription.equals(other$MethodDescription);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof SignalMethodTimeLog;
    }
 
    public int hashCode() {
        Object $Type = getType();
        int result = (1 * 59) + ($Type == null ? 43 : $Type.hashCode());
        Object $TimeStamp = getTimeStamp();
        int result2 = (result * 59) + ($TimeStamp == null ? 43 : $TimeStamp.hashCode());
        Object $SpendTimeSeconds = getSpendTimeSeconds();
        int result3 = (result2 * 59) + ($SpendTimeSeconds == null ? 43 : $SpendTimeSeconds.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 $MethodName = getMethodName();
        int result7 = (result6 * 59) + ($MethodName == null ? 43 : $MethodName.hashCode());
        Object $MethodDescription = getMethodDescription();
        return (result7 * 59) + ($MethodDescription == null ? 43 : $MethodDescription.hashCode());
    }
 
    public String toString() {
        return "SignalMethodTimeLog(TraceId=" + getTraceId() + ", Type=" + getType() + ", MachineCode=" + getMachineCode() + ", TimeStamp=" + getTimeStamp() + ", MethodName=" + getMethodName() + ", MethodDescription=" + getMethodDescription() + ", SpendTimeSeconds=" + getSpendTimeSeconds() + ", collectMonth=" + getCollectMonth() + ")";
    }
 
    public SignalMethodTimeLog() {
    }
 
    public SignalMethodTimeLog(final String TraceId, final Integer Type, final String MachineCode, final Long TimeStamp, final String MethodName, final String MethodDescription, final Long SpendTimeSeconds, final Integer collectMonth) {
        this.TraceId = TraceId;
        this.Type = Type;
        this.MachineCode = MachineCode;
        this.TimeStamp = TimeStamp;
        this.MethodName = MethodName;
        this.MethodDescription = MethodDescription;
        this.SpendTimeSeconds = SpendTimeSeconds;
        this.collectMonth = collectMonth;
    }
 
    public String getTraceId() {
        return this.TraceId;
    }
 
    public Integer getType() {
        return this.Type;
    }
 
    public String getMachineCode() {
        return this.MachineCode;
    }
 
    public Long getTimeStamp() {
        return this.TimeStamp;
    }
 
    public String getMethodName() {
        return this.MethodName;
    }
 
    public String getMethodDescription() {
        return this.MethodDescription;
    }
 
    public Long getSpendTimeSeconds() {
        return this.SpendTimeSeconds;
    }
 
    public Integer getCollectMonth() {
        return this.collectMonth;
    }
}