package com.qianwen.smartman.modules.mdc.dto; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/dto/ProcessParameterRealVO.class */ public class ProcessParameterRealVO implements Serializable { private static final long serialVersionUID = -1794674168753499898L; private String time; private Long realTime; private String collectItem; private String value; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/dto/ProcessParameterRealVO$ProcessParameterRealVOBuilder.class */ public static class ProcessParameterRealVOBuilder { private String time; private Long realTime; private String collectItem; private String value; ProcessParameterRealVOBuilder() { } public ProcessParameterRealVOBuilder time(final String time) { this.time = time; return this; } public ProcessParameterRealVOBuilder realTime(final Long realTime) { this.realTime = realTime; return this; } public ProcessParameterRealVOBuilder collectItem(final String collectItem) { this.collectItem = collectItem; return this; } public ProcessParameterRealVOBuilder value(final String value) { this.value = value; return this; } public ProcessParameterRealVO build() { return new ProcessParameterRealVO(this.time, this.realTime, this.collectItem, this.value); } public String toString() { return "ProcessParameterRealVO.ProcessParameterRealVOBuilder(time=" + this.time + ", realTime=" + this.realTime + ", collectItem=" + this.collectItem + ", value=" + this.value + ")"; } } public void setTime(final String time) { this.time = time; } public void setRealTime(final Long realTime) { this.realTime = realTime; } public void setCollectItem(final String collectItem) { this.collectItem = collectItem; } public void setValue(final String value) { this.value = value; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof ProcessParameterRealVO) { ProcessParameterRealVO other = (ProcessParameterRealVO) o; if (other.canEqual(this)) { Object this$realTime = getRealTime(); Object other$realTime = other.getRealTime(); if (this$realTime == null) { if (other$realTime != null) { return false; } } else if (!this$realTime.equals(other$realTime)) { return false; } Object this$time = getTime(); Object other$time = other.getTime(); if (this$time == null) { if (other$time != null) { return false; } } else if (!this$time.equals(other$time)) { return false; } Object this$collectItem = getCollectItem(); Object other$collectItem = other.getCollectItem(); if (this$collectItem == null) { if (other$collectItem != null) { return false; } } else if (!this$collectItem.equals(other$collectItem)) { return false; } Object this$value = getValue(); Object other$value = other.getValue(); return this$value == null ? other$value == null : this$value.equals(other$value); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof ProcessParameterRealVO; } public int hashCode() { Object $realTime = getRealTime(); int result = (1 * 59) + ($realTime == null ? 43 : $realTime.hashCode()); Object $time = getTime(); int result2 = (result * 59) + ($time == null ? 43 : $time.hashCode()); Object $collectItem = getCollectItem(); int result3 = (result2 * 59) + ($collectItem == null ? 43 : $collectItem.hashCode()); Object $value = getValue(); return (result3 * 59) + ($value == null ? 43 : $value.hashCode()); } public String toString() { return "ProcessParameterRealVO(time=" + getTime() + ", realTime=" + getRealTime() + ", collectItem=" + getCollectItem() + ", value=" + getValue() + ")"; } public static ProcessParameterRealVOBuilder builder() { return new ProcessParameterRealVOBuilder(); } public ProcessParameterRealVO() { } public ProcessParameterRealVO(final String time, final Long realTime, final String collectItem, final String value) { this.time = time; this.realTime = realTime; this.collectItem = collectItem; this.value = value; } public String getTime() { return this.time; } public Long getRealTime() { return this.realTime; } public String getCollectItem() { return this.collectItem; } public String getValue() { return this.value; } }