package com.qianwen.smartman.modules.cps.vo; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import javax.validation.constraints.Min; import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotNull; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/MaintainProjectUpdateVO.class */ public class MaintainProjectUpdateVO implements Serializable { private static final long serialVersionUID = 1; @NotNull(message = "保养项目Id不能为空") @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty(value = "保养项目Id", required = true) private Long id; @NotNull(message = "机器类型Id不能为空") @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty(value = "机器类型Id", required = true) private Long deviceTypeId; @NotBlank(message = "机器类型名称不能为空") @ApiModelProperty(value = "机器类型名称", required = true) private String deviceTypeName; @NotBlank(message = "保养项目编码不能为空") @ApiModelProperty(value = "保养项目编码", required = true) private String code; @NotBlank(message = "保养项目名称不能为空") @ApiModelProperty(value = "保养项目名称", required = true) private String name; @NotNull(message = "周期不能为空") @Min(serialVersionUID) @ApiModelProperty(value = "周期(天)", required = true) private Integer intervalTime; @NotNull(message = "保养预警天数不能为空") @Min(serialVersionUID) @ApiModelProperty("保养预警提示") private Integer preWarningDays; @ApiModelProperty("备注") private String remark; 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 boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof MaintainProjectUpdateVO) { MaintainProjectUpdateVO other = (MaintainProjectUpdateVO) 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(); return this$remark == null ? other$remark == null : this$remark.equals(other$remark); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof MaintainProjectUpdateVO; } 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(); return (result7 * 59) + ($remark == null ? 43 : $remark.hashCode()); } public String toString() { return "MaintainProjectUpdateVO(id=" + getId() + ", deviceTypeId=" + getDeviceTypeId() + ", deviceTypeName=" + getDeviceTypeName() + ", code=" + getCode() + ", name=" + getName() + ", intervalTime=" + getIntervalTime() + ", preWarningDays=" + getPreWarningDays() + ", remark=" + getRemark() + ")"; } 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; } }