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