package com.qianwen.smartman.modules.tpm.vo; import io.swagger.annotations.ApiModelProperty; import com.qianwen.smartman.modules.cps.vo.RepairRecordMaterialAddVO; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/vo/RepairRecordMaterialVO.class */ public class RepairRecordMaterialVO extends RepairRecordMaterialAddVO { @ApiModelProperty(value = "id", dataType = "java.lang.String") private Long id; public void setId(final Long id) { this.id = id; } @Override // org.springblade.modules.cps.vo.RepairRecordMaterialAddVO public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof RepairRecordMaterialVO) { RepairRecordMaterialVO other = (RepairRecordMaterialVO) o; if (other.canEqual(this)) { Object this$id = getId(); Object other$id = other.getId(); return this$id == null ? other$id == null : this$id.equals(other$id); } return false; } return false; } @Override // org.springblade.modules.cps.vo.RepairRecordMaterialAddVO protected boolean canEqual(final Object other) { return other instanceof RepairRecordMaterialVO; } @Override // org.springblade.modules.cps.vo.RepairRecordMaterialAddVO public int hashCode() { Object $id = getId(); int result = (1 * 59) + ($id == null ? 43 : $id.hashCode()); return result; } @Override // org.springblade.modules.cps.vo.RepairRecordMaterialAddVO public String toString() { return "RepairRecordMaterialVO(id=" + getId() + ")"; } public Long getId() { return this.id; } }