package com.qianwen.smartman.modules.tpm.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.List; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/vo/RepairApplyLookVO.class */ public class RepairApplyLookVO implements Serializable { @ApiModelProperty(value = "机器类型id", dataType = "java.lang.String") private Long deviceTypeId; @ApiModelProperty("申请单状态: 待执行 1 执行中 2 待确认 3 已确认 4") private List applyStatusList; @ApiModelProperty("关键词,申请单号,设备编码,设备名称模糊匹配") private String keyWords; public RepairApplyLookVO setDeviceTypeId(final Long deviceTypeId) { this.deviceTypeId = deviceTypeId; return this; } public RepairApplyLookVO setApplyStatusList(final List applyStatusList) { this.applyStatusList = applyStatusList; return this; } public RepairApplyLookVO setKeyWords(final String keyWords) { this.keyWords = keyWords; return this; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof RepairApplyLookVO) { RepairApplyLookVO other = (RepairApplyLookVO) o; if (other.canEqual(this)) { Object this$deviceTypeId = getDeviceTypeId(); Object other$deviceTypeId = other.getDeviceTypeId(); if (this$deviceTypeId == null) { if (other$deviceTypeId != null) { return false; } } else if (!this$deviceTypeId.equals(other$deviceTypeId)) { return false; } Object this$applyStatusList = getApplyStatusList(); Object other$applyStatusList = other.getApplyStatusList(); if (this$applyStatusList == null) { if (other$applyStatusList != null) { return false; } } else if (!this$applyStatusList.equals(other$applyStatusList)) { return false; } Object this$keyWords = getKeyWords(); Object other$keyWords = other.getKeyWords(); return this$keyWords == null ? other$keyWords == null : this$keyWords.equals(other$keyWords); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof RepairApplyLookVO; } public int hashCode() { Object $deviceTypeId = getDeviceTypeId(); int result = (1 * 59) + ($deviceTypeId == null ? 43 : $deviceTypeId.hashCode()); Object $applyStatusList = getApplyStatusList(); int result2 = (result * 59) + ($applyStatusList == null ? 43 : $applyStatusList.hashCode()); Object $keyWords = getKeyWords(); return (result2 * 59) + ($keyWords == null ? 43 : $keyWords.hashCode()); } public String toString() { return "RepairApplyLookVO(deviceTypeId=" + getDeviceTypeId() + ", applyStatusList=" + getApplyStatusList() + ", keyWords=" + getKeyWords() + ")"; } public Long getDeviceTypeId() { return this.deviceTypeId; } public List getApplyStatusList() { return this.applyStatusList; } public String getKeyWords() { return this.keyWords; } }