package com.qianwen.smartman.modules.fms.dto; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/dto/ManualTrayDmpDTO.class */ public class ManualTrayDmpDTO implements Serializable { private static final long serialVersionUID = -8724184933980304902L; @ApiModelProperty("托盘编号") private String TrayCode; @ApiModelProperty("初始位置编号") private String StartPosition; @ApiModelProperty("起始工作台编号") private String StartStation; @ApiModelProperty("目标位置编号") private String EndPosition; @ApiModelProperty("目标工作台号") private String EndStation; @ApiModelProperty("动作类型(1:实际移动,2:数据移动)") private Integer ActionType; @ApiModelProperty("目标位置类型(1:库位,2:设备)") private Integer CurrentType; public void setTrayCode(final String TrayCode) { this.TrayCode = TrayCode; } public void setStartPosition(final String StartPosition) { this.StartPosition = StartPosition; } public void setStartStation(final String StartStation) { this.StartStation = StartStation; } public void setEndPosition(final String EndPosition) { this.EndPosition = EndPosition; } public void setEndStation(final String EndStation) { this.EndStation = EndStation; } public void setActionType(final Integer ActionType) { this.ActionType = ActionType; } public void setCurrentType(final Integer CurrentType) { this.CurrentType = CurrentType; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof ManualTrayDmpDTO) { ManualTrayDmpDTO other = (ManualTrayDmpDTO) o; if (other.canEqual(this)) { Object this$ActionType = getActionType(); Object other$ActionType = other.getActionType(); if (this$ActionType == null) { if (other$ActionType != null) { return false; } } else if (!this$ActionType.equals(other$ActionType)) { return false; } Object this$CurrentType = getCurrentType(); Object other$CurrentType = other.getCurrentType(); if (this$CurrentType == null) { if (other$CurrentType != null) { return false; } } else if (!this$CurrentType.equals(other$CurrentType)) { return false; } Object this$TrayCode = getTrayCode(); Object other$TrayCode = other.getTrayCode(); if (this$TrayCode == null) { if (other$TrayCode != null) { return false; } } else if (!this$TrayCode.equals(other$TrayCode)) { return false; } Object this$StartPosition = getStartPosition(); Object other$StartPosition = other.getStartPosition(); if (this$StartPosition == null) { if (other$StartPosition != null) { return false; } } else if (!this$StartPosition.equals(other$StartPosition)) { return false; } Object this$StartStation = getStartStation(); Object other$StartStation = other.getStartStation(); if (this$StartStation == null) { if (other$StartStation != null) { return false; } } else if (!this$StartStation.equals(other$StartStation)) { return false; } Object this$EndPosition = getEndPosition(); Object other$EndPosition = other.getEndPosition(); if (this$EndPosition == null) { if (other$EndPosition != null) { return false; } } else if (!this$EndPosition.equals(other$EndPosition)) { return false; } Object this$EndStation = getEndStation(); Object other$EndStation = other.getEndStation(); return this$EndStation == null ? other$EndStation == null : this$EndStation.equals(other$EndStation); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof ManualTrayDmpDTO; } public int hashCode() { Object $ActionType = getActionType(); int result = (1 * 59) + ($ActionType == null ? 43 : $ActionType.hashCode()); Object $CurrentType = getCurrentType(); int result2 = (result * 59) + ($CurrentType == null ? 43 : $CurrentType.hashCode()); Object $TrayCode = getTrayCode(); int result3 = (result2 * 59) + ($TrayCode == null ? 43 : $TrayCode.hashCode()); Object $StartPosition = getStartPosition(); int result4 = (result3 * 59) + ($StartPosition == null ? 43 : $StartPosition.hashCode()); Object $StartStation = getStartStation(); int result5 = (result4 * 59) + ($StartStation == null ? 43 : $StartStation.hashCode()); Object $EndPosition = getEndPosition(); int result6 = (result5 * 59) + ($EndPosition == null ? 43 : $EndPosition.hashCode()); Object $EndStation = getEndStation(); return (result6 * 59) + ($EndStation == null ? 43 : $EndStation.hashCode()); } public String toString() { return "ManualTrayDmpDTO(TrayCode=" + getTrayCode() + ", StartPosition=" + getStartPosition() + ", StartStation=" + getStartStation() + ", EndPosition=" + getEndPosition() + ", EndStation=" + getEndStation() + ", ActionType=" + getActionType() + ", CurrentType=" + getCurrentType() + ")"; } public ManualTrayDmpDTO(final String TrayCode, final String StartPosition, final String StartStation, final String EndPosition, final String EndStation, final Integer ActionType, final Integer CurrentType) { this.TrayCode = TrayCode; this.StartPosition = StartPosition; this.StartStation = StartStation; this.EndPosition = EndPosition; this.EndStation = EndStation; this.ActionType = ActionType; this.CurrentType = CurrentType; } /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/dto/ManualTrayDmpDTO$ManualTrayDmpDTOBuilder.class */ public static class ManualTrayDmpDTOBuilder { private String TrayCode; private String StartPosition; private String StartStation; private String EndPosition; private String EndStation; private Integer ActionType; private Integer CurrentType; ManualTrayDmpDTOBuilder() { } public ManualTrayDmpDTOBuilder TrayCode(final String TrayCode) { this.TrayCode = TrayCode; return this; } public ManualTrayDmpDTOBuilder StartPosition(final String StartPosition) { this.StartPosition = StartPosition; return this; } public ManualTrayDmpDTOBuilder StartStation(final String StartStation) { this.StartStation = StartStation; return this; } public ManualTrayDmpDTOBuilder EndPosition(final String EndPosition) { this.EndPosition = EndPosition; return this; } public ManualTrayDmpDTOBuilder EndStation(final String EndStation) { this.EndStation = EndStation; return this; } public ManualTrayDmpDTOBuilder ActionType(final Integer ActionType) { this.ActionType = ActionType; return this; } public ManualTrayDmpDTOBuilder CurrentType(final Integer CurrentType) { this.CurrentType = CurrentType; return this; } public ManualTrayDmpDTO build() { return new ManualTrayDmpDTO(this.TrayCode, this.StartPosition, this.StartStation, this.EndPosition, this.EndStation, this.ActionType, this.CurrentType); } public String toString() { return "ManualTrayDmpDTO.ManualTrayDmpDTOBuilder(TrayCode=" + this.TrayCode + ", StartPosition=" + this.StartPosition + ", StartStation=" + this.StartStation + ", EndPosition=" + this.EndPosition + ", EndStation=" + this.EndStation + ", ActionType=" + this.ActionType + ", CurrentType=" + this.CurrentType + ")"; } } public ManualTrayDmpDTO() { } public static ManualTrayDmpDTOBuilder builder() { return new ManualTrayDmpDTOBuilder(); } public String getTrayCode() { return this.TrayCode; } public String getStartPosition() { return this.StartPosition; } public String getStartStation() { return this.StartStation; } public String getEndPosition() { return this.EndPosition; } public String getEndStation() { return this.EndStation; } public Integer getActionType() { return this.ActionType; } public Integer getCurrentType() { return this.CurrentType; } }