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
package com.qianwen.smartman.modules.dmpLog.entity;
 
public class SignalFlowLog {
    public String TraceId;
    public Integer Type;
    public String MachineCode;
    public Long TimeStamp;
    public Object Message;
    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 setMessage(final Object Message) {
        this.Message = Message;
    }
 
    public void setCollectMonth(final Integer collectMonth) {
        this.collectMonth = collectMonth;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof SignalFlowLog) {
            SignalFlowLog other = (SignalFlowLog) 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$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$Message = getMessage();
                Object other$Message = other.getMessage();
                return this$Message == null ? other$Message == null : this$Message.equals(other$Message);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof SignalFlowLog;
    }
 
    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 $collectMonth = getCollectMonth();
        int result3 = (result2 * 59) + ($collectMonth == null ? 43 : $collectMonth.hashCode());
        Object $TraceId = getTraceId();
        int result4 = (result3 * 59) + ($TraceId == null ? 43 : $TraceId.hashCode());
        Object $MachineCode = getMachineCode();
        int result5 = (result4 * 59) + ($MachineCode == null ? 43 : $MachineCode.hashCode());
        Object $Message = getMessage();
        return (result5 * 59) + ($Message == null ? 43 : $Message.hashCode());
    }
 
    public String toString() {
        return "SignalFlowLog(TraceId=" + getTraceId() + ", Type=" + getType() + ", MachineCode=" + getMachineCode() + ", TimeStamp=" + getTimeStamp() + ", Message=" + getMessage() + ", collectMonth=" + getCollectMonth() + ")";
    }
 
    public SignalFlowLog() {
    }
 
    public SignalFlowLog(final String TraceId, final Integer Type, final String MachineCode, final Long TimeStamp, final Object Message, final Integer collectMonth) {
        this.TraceId = TraceId;
        this.Type = Type;
        this.MachineCode = MachineCode;
        this.TimeStamp = TimeStamp;
        this.Message = Message;
        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 Object getMessage() {
        return this.Message;
    }
 
    public Integer getCollectMonth() {
        return this.collectMonth;
    }
}