package com.qianwen.smartman.modules.andon.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/vo/AndonTypeDetailVO.class */ public class AndonTypeDetailVO implements Serializable { private static final long serialVersionUID = -3254960180901509826L; @ApiModelProperty(value = "主键id", dataType = "java.lang.String") private Long id; @ApiModelProperty("编号") private String code; @ApiModelProperty("名称") private String name; @ApiModelProperty("备注") private String remark; @ApiModelProperty("设备类型id") private String deviceIds; @ApiModelProperty("设备类型编码") private String deviceCodes; @ApiModelProperty("设备类型名称") private String deviceNames; public void setId(final Long id) { this.id = id; } public void setCode(final String code) { this.code = code; } public void setName(final String name) { this.name = name; } public void setRemark(final String remark) { this.remark = remark; } public void setDeviceIds(final String deviceIds) { this.deviceIds = deviceIds; } public void setDeviceCodes(final String deviceCodes) { this.deviceCodes = deviceCodes; } public void setDeviceNames(final String deviceNames) { this.deviceNames = deviceNames; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof AndonTypeDetailVO) { AndonTypeDetailVO other = (AndonTypeDetailVO) o; if (other.canEqual(this)) { Object this$id = getId(); Object other$id = other.getId(); if (this$id == null) { if (other$id != null) { return false; } } else if (!this$id.equals(other$id)) { return false; } Object this$code = getCode(); Object other$code = other.getCode(); if (this$code == null) { if (other$code != null) { return false; } } else if (!this$code.equals(other$code)) { return false; } Object this$name = getName(); Object other$name = other.getName(); if (this$name == null) { if (other$name != null) { return false; } } else if (!this$name.equals(other$name)) { return false; } Object this$remark = getRemark(); Object other$remark = other.getRemark(); if (this$remark == null) { if (other$remark != null) { return false; } } else if (!this$remark.equals(other$remark)) { return false; } Object this$deviceIds = getDeviceIds(); Object other$deviceIds = other.getDeviceIds(); if (this$deviceIds == null) { if (other$deviceIds != null) { return false; } } else if (!this$deviceIds.equals(other$deviceIds)) { return false; } Object this$deviceCodes = getDeviceCodes(); Object other$deviceCodes = other.getDeviceCodes(); if (this$deviceCodes == null) { if (other$deviceCodes != null) { return false; } } else if (!this$deviceCodes.equals(other$deviceCodes)) { return false; } Object this$deviceNames = getDeviceNames(); Object other$deviceNames = other.getDeviceNames(); return this$deviceNames == null ? other$deviceNames == null : this$deviceNames.equals(other$deviceNames); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof AndonTypeDetailVO; } public int hashCode() { Object $id = getId(); int result = (1 * 59) + ($id == null ? 43 : $id.hashCode()); Object $code = getCode(); int result2 = (result * 59) + ($code == null ? 43 : $code.hashCode()); Object $name = getName(); int result3 = (result2 * 59) + ($name == null ? 43 : $name.hashCode()); Object $remark = getRemark(); int result4 = (result3 * 59) + ($remark == null ? 43 : $remark.hashCode()); Object $deviceIds = getDeviceIds(); int result5 = (result4 * 59) + ($deviceIds == null ? 43 : $deviceIds.hashCode()); Object $deviceCodes = getDeviceCodes(); int result6 = (result5 * 59) + ($deviceCodes == null ? 43 : $deviceCodes.hashCode()); Object $deviceNames = getDeviceNames(); return (result6 * 59) + ($deviceNames == null ? 43 : $deviceNames.hashCode()); } public String toString() { return "AndonTypeDetailVO(id=" + getId() + ", code=" + getCode() + ", name=" + getName() + ", remark=" + getRemark() + ", deviceIds=" + getDeviceIds() + ", deviceCodes=" + getDeviceCodes() + ", deviceNames=" + getDeviceNames() + ")"; } public Long getId() { return this.id; } public String getCode() { return this.code; } public String getName() { return this.name; } public String getRemark() { return this.remark; } public String getDeviceIds() { return this.deviceIds; } public String getDeviceCodes() { return this.deviceCodes; } public String getDeviceNames() { return this.deviceNames; } }