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; } }