package com.qianwen.smartman.modules.visual.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/visual/vo/WorkstationShiftOutput.class */
|
public class WorkstationShiftOutput implements Serializable {
|
@ApiModelProperty("工位id集合")
|
private List<Long> workStationIdList;
|
|
public void setWorkStationIdList(final List<Long> workStationIdList) {
|
this.workStationIdList = workStationIdList;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof WorkstationShiftOutput) {
|
WorkstationShiftOutput other = (WorkstationShiftOutput) o;
|
if (other.canEqual(this)) {
|
Object this$workStationIdList = getWorkStationIdList();
|
Object other$workStationIdList = other.getWorkStationIdList();
|
return this$workStationIdList == null ? other$workStationIdList == null : this$workStationIdList.equals(other$workStationIdList);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof WorkstationShiftOutput;
|
}
|
|
public int hashCode() {
|
Object $workStationIdList = getWorkStationIdList();
|
int result = (1 * 59) + ($workStationIdList == null ? 43 : $workStationIdList.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "WorkstationShiftOutput(workStationIdList=" + getWorkStationIdList() + ")";
|
}
|
|
public List<Long> getWorkStationIdList() {
|
return this.workStationIdList;
|
}
|
}
|