package com.qianwen.smartman.modules.smis.vo; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.util.List; @ApiModel(description = "保养项目") public class MaintainProjectVO { @ApiModelProperty(name = "主键id", dataType = "java.lang.String") private Long id; @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty("机器类型Id") private Long deviceTypeId; @ApiModelProperty("机器类型名称") private String deviceTypeName; @ApiModelProperty("保养项目编码") private String code; @ApiModelProperty("保养项目名称") private String name; @ApiModelProperty("周期(天)") private Integer intervalTime; @ApiModelProperty("保养预警提示") private Integer preWarningDays; @ApiModelProperty("备注") private String remark; @ApiModelProperty("保养项目保养项") private List maintainProjectItemVoList; public void setId(final Long id) { this.id = id; } public void setDeviceTypeId(final Long deviceTypeId) { this.deviceTypeId = deviceTypeId; } public void setDeviceTypeName(final String deviceTypeName) { this.deviceTypeName = deviceTypeName; } public void setCode(final String code) { this.code = code; } public void setName(final String name) { this.name = name; } public void setIntervalTime(final Integer intervalTime) { this.intervalTime = intervalTime; } public void setPreWarningDays(final Integer preWarningDays) { this.preWarningDays = preWarningDays; } public void setRemark(final String remark) { this.remark = remark; } public void setMaintainProjectItemVoList(final List maintainProjectItemVoList) { this.maintainProjectItemVoList = maintainProjectItemVoList; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof MaintainProjectVO) { MaintainProjectVO other = (MaintainProjectVO) 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$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$intervalTime = getIntervalTime(); Object other$intervalTime = other.getIntervalTime(); if (this$intervalTime == null) { if (other$intervalTime != null) { return false; } } else if (!this$intervalTime.equals(other$intervalTime)) { return false; } Object this$preWarningDays = getPreWarningDays(); Object other$preWarningDays = other.getPreWarningDays(); if (this$preWarningDays == null) { if (other$preWarningDays != null) { return false; } } else if (!this$preWarningDays.equals(other$preWarningDays)) { return false; } Object this$deviceTypeName = getDeviceTypeName(); Object other$deviceTypeName = other.getDeviceTypeName(); if (this$deviceTypeName == null) { if (other$deviceTypeName != null) { return false; } } else if (!this$deviceTypeName.equals(other$deviceTypeName)) { 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$maintainProjectItemVoList = getMaintainProjectItemVoList(); Object other$maintainProjectItemVoList = other.getMaintainProjectItemVoList(); return this$maintainProjectItemVoList == null ? other$maintainProjectItemVoList == null : this$maintainProjectItemVoList.equals(other$maintainProjectItemVoList); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof MaintainProjectVO; } public int hashCode() { Object $id = getId(); int result = (1 * 59) + ($id == null ? 43 : $id.hashCode()); Object $deviceTypeId = getDeviceTypeId(); int result2 = (result * 59) + ($deviceTypeId == null ? 43 : $deviceTypeId.hashCode()); Object $intervalTime = getIntervalTime(); int result3 = (result2 * 59) + ($intervalTime == null ? 43 : $intervalTime.hashCode()); Object $preWarningDays = getPreWarningDays(); int result4 = (result3 * 59) + ($preWarningDays == null ? 43 : $preWarningDays.hashCode()); Object $deviceTypeName = getDeviceTypeName(); int result5 = (result4 * 59) + ($deviceTypeName == null ? 43 : $deviceTypeName.hashCode()); Object $code = getCode(); int result6 = (result5 * 59) + ($code == null ? 43 : $code.hashCode()); Object $name = getName(); int result7 = (result6 * 59) + ($name == null ? 43 : $name.hashCode()); Object $remark = getRemark(); int result8 = (result7 * 59) + ($remark == null ? 43 : $remark.hashCode()); Object $maintainProjectItemVoList = getMaintainProjectItemVoList(); return (result8 * 59) + ($maintainProjectItemVoList == null ? 43 : $maintainProjectItemVoList.hashCode()); } public String toString() { return "MaintainProjectVO(id=" + getId() + ", deviceTypeId=" + getDeviceTypeId() + ", deviceTypeName=" + getDeviceTypeName() + ", code=" + getCode() + ", name=" + getName() + ", intervalTime=" + getIntervalTime() + ", preWarningDays=" + getPreWarningDays() + ", remark=" + getRemark() + ", maintainProjectItemVoList=" + getMaintainProjectItemVoList() + ")"; } public Long getId() { return this.id; } public Long getDeviceTypeId() { return this.deviceTypeId; } public String getDeviceTypeName() { return this.deviceTypeName; } public String getCode() { return this.code; } public String getName() { return this.name; } public Integer getIntervalTime() { return this.intervalTime; } public Integer getPreWarningDays() { return this.preWarningDays; } public String getRemark() { return this.remark; } public List getMaintainProjectItemVoList() { return this.maintainProjectItemVoList; } }