package com.qianwen.smartman.modules.perf.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/perf/vo/CurrWorkLogVO.class */
|
public class CurrWorkLogVO implements Serializable {
|
private static final long serialVersionUID = 5715631184622092193L;
|
@ApiModelProperty(value = "工位id", dataType = "java.lang.String")
|
private Long workstationId;
|
|
public void setWorkstationId(final Long workstationId) {
|
this.workstationId = workstationId;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof CurrWorkLogVO) {
|
CurrWorkLogVO other = (CurrWorkLogVO) o;
|
if (other.canEqual(this)) {
|
Object this$workstationId = getWorkstationId();
|
Object other$workstationId = other.getWorkstationId();
|
return this$workstationId == null ? other$workstationId == null : this$workstationId.equals(other$workstationId);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof CurrWorkLogVO;
|
}
|
|
public int hashCode() {
|
Object $workstationId = getWorkstationId();
|
int result = (1 * 59) + ($workstationId == null ? 43 : $workstationId.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "CurrWorkLogVO(workstationId=" + getWorkstationId() + ")";
|
}
|
|
public Long getWorkstationId() {
|
return this.workstationId;
|
}
|
}
|