package com.qianwen.smartman.modules.mdc.entity; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/entity/SuperNewCollectData.class */ public class SuperNewCollectData { private Long ts; private String n; private String v; private Long workstationId; private String item; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/entity/SuperNewCollectData$SuperNewCollectDataBuilder.class */ public static class SuperNewCollectDataBuilder { private Long ts; private String n; private String v; private Long workstationId; private String item; SuperNewCollectDataBuilder() { } public SuperNewCollectDataBuilder ts(final Long ts) { this.ts = ts; return this; } public SuperNewCollectDataBuilder n(final String n) { this.n = n; return this; } public SuperNewCollectDataBuilder v(final String v) { this.v = v; return this; } public SuperNewCollectDataBuilder workstationId(final Long workstationId) { this.workstationId = workstationId; return this; } public SuperNewCollectDataBuilder item(final String item) { this.item = item; return this; } public SuperNewCollectData build() { return new SuperNewCollectData(this.ts, this.n, this.v, this.workstationId, this.item); } public String toString() { return "SuperNewCollectData.SuperNewCollectDataBuilder(ts=" + this.ts + ", n=" + this.n + ", v=" + this.v + ", workstationId=" + this.workstationId + ", item=" + this.item + ")"; } } public void setTs(final Long ts) { this.ts = ts; } public void setN(final String n) { this.n = n; } public void setV(final String v) { this.v = v; } public void setWorkstationId(final Long workstationId) { this.workstationId = workstationId; } public void setItem(final String item) { this.item = item; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof SuperNewCollectData) { SuperNewCollectData other = (SuperNewCollectData) o; if (other.canEqual(this)) { Object this$ts = getTs(); Object other$ts = other.getTs(); if (this$ts == null) { if (other$ts != null) { return false; } } else if (!this$ts.equals(other$ts)) { return false; } Object this$workstationId = getWorkstationId(); Object other$workstationId = other.getWorkstationId(); if (this$workstationId == null) { if (other$workstationId != null) { return false; } } else if (!this$workstationId.equals(other$workstationId)) { return false; } Object this$n = getN(); Object other$n = other.getN(); if (this$n == null) { if (other$n != null) { return false; } } else if (!this$n.equals(other$n)) { return false; } Object this$v = getV(); Object other$v = other.getV(); if (this$v == null) { if (other$v != null) { return false; } } else if (!this$v.equals(other$v)) { return false; } Object this$item = getItem(); Object other$item = other.getItem(); return this$item == null ? other$item == null : this$item.equals(other$item); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof SuperNewCollectData; } public int hashCode() { Object $ts = getTs(); int result = (1 * 59) + ($ts == null ? 43 : $ts.hashCode()); Object $workstationId = getWorkstationId(); int result2 = (result * 59) + ($workstationId == null ? 43 : $workstationId.hashCode()); Object $n = getN(); int result3 = (result2 * 59) + ($n == null ? 43 : $n.hashCode()); Object $v = getV(); int result4 = (result3 * 59) + ($v == null ? 43 : $v.hashCode()); Object $item = getItem(); return (result4 * 59) + ($item == null ? 43 : $item.hashCode()); } public String toString() { return "SuperNewCollectData(ts=" + getTs() + ", n=" + getN() + ", v=" + getV() + ", workstationId=" + getWorkstationId() + ", item=" + getItem() + ")"; } public static SuperNewCollectDataBuilder builder() { return new SuperNewCollectDataBuilder(); } public SuperNewCollectData() { } public SuperNewCollectData(final Long ts, final String n, final String v, final Long workstationId, final String item) { this.ts = ts; this.n = n; this.v = v; this.workstationId = workstationId; this.item = item; } public Long getTs() { return this.ts; } public String getN() { return this.n; } public String getV() { return this.v; } public Long getWorkstationId() { return this.workstationId; } public String getItem() { return this.item; } }