package com.qianwen.smartman.modules.fms.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
@ApiModel(value = "FmsWorkStationVO", description = "FmsWorkStationVO")
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/vo/FmsWorkStationVO.class */
|
public class FmsWorkStationVO implements Serializable {
|
@ApiModelProperty("工位ID")
|
private Long workstationId;
|
@ApiModelProperty("工位名称")
|
private String workstationName;
|
|
public void setWorkstationId(final Long workstationId) {
|
this.workstationId = workstationId;
|
}
|
|
public void setWorkstationName(final String workstationName) {
|
this.workstationName = workstationName;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof FmsWorkStationVO) {
|
FmsWorkStationVO other = (FmsWorkStationVO) o;
|
if (other.canEqual(this)) {
|
Object this$workstationId = getWorkstationId();
|
Object other$workstationId = other.getWorkstationId();
|
if (this$workstationId == null) {
|
if (other$workstationId != null) {
|
return false;
|
}
|
} else if (!this$workstationId.equals(other$workstationId)) {
|
return false;
|
}
|
Object this$workstationName = getWorkstationName();
|
Object other$workstationName = other.getWorkstationName();
|
return this$workstationName == null ? other$workstationName == null : this$workstationName.equals(other$workstationName);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof FmsWorkStationVO;
|
}
|
|
public int hashCode() {
|
Object $workstationId = getWorkstationId();
|
int result = (1 * 59) + ($workstationId == null ? 43 : $workstationId.hashCode());
|
Object $workstationName = getWorkstationName();
|
return (result * 59) + ($workstationName == null ? 43 : $workstationName.hashCode());
|
}
|
|
public String toString() {
|
return "FmsWorkStationVO(workstationId=" + getWorkstationId() + ", workstationName=" + getWorkstationName() + ")";
|
}
|
|
public Long getWorkstationId() {
|
return this.workstationId;
|
}
|
|
public String getWorkstationName() {
|
return this.workstationName;
|
}
|
}
|