package com.qianwen.smartman.modules.report.vo;
|
|
import java.util.List;
|
|
|
public class WorkstationEfficiencyQueryVO {
|
private List<Integer> shiftIndex;
|
private List<Long> workstationIds;
|
private String startTime;
|
private String endTime;
|
|
public void setShiftIndex(final List<Integer> shiftIndex) {
|
this.shiftIndex = shiftIndex;
|
}
|
|
public void setWorkstationIds(final List<Long> workstationIds) {
|
this.workstationIds = workstationIds;
|
}
|
|
public void setStartTime(final String startTime) {
|
this.startTime = startTime;
|
}
|
|
public void setEndTime(final String endTime) {
|
this.endTime = endTime;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof WorkstationEfficiencyQueryVO) {
|
WorkstationEfficiencyQueryVO other = (WorkstationEfficiencyQueryVO) o;
|
if (other.canEqual(this)) {
|
Object this$shiftIndex = getShiftIndex();
|
Object other$shiftIndex = other.getShiftIndex();
|
if (this$shiftIndex == null) {
|
if (other$shiftIndex != null) {
|
return false;
|
}
|
} else if (!this$shiftIndex.equals(other$shiftIndex)) {
|
return false;
|
}
|
Object this$workstationIds = getWorkstationIds();
|
Object other$workstationIds = other.getWorkstationIds();
|
if (this$workstationIds == null) {
|
if (other$workstationIds != null) {
|
return false;
|
}
|
} else if (!this$workstationIds.equals(other$workstationIds)) {
|
return false;
|
}
|
Object this$startTime = getStartTime();
|
Object other$startTime = other.getStartTime();
|
if (this$startTime == null) {
|
if (other$startTime != null) {
|
return false;
|
}
|
} else if (!this$startTime.equals(other$startTime)) {
|
return false;
|
}
|
Object this$endTime = getEndTime();
|
Object other$endTime = other.getEndTime();
|
return this$endTime == null ? other$endTime == null : this$endTime.equals(other$endTime);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof WorkstationEfficiencyQueryVO;
|
}
|
|
public int hashCode() {
|
Object $shiftIndex = getShiftIndex();
|
int result = (1 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode());
|
Object $workstationIds = getWorkstationIds();
|
int result2 = (result * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode());
|
Object $startTime = getStartTime();
|
int result3 = (result2 * 59) + ($startTime == null ? 43 : $startTime.hashCode());
|
Object $endTime = getEndTime();
|
return (result3 * 59) + ($endTime == null ? 43 : $endTime.hashCode());
|
}
|
|
public String toString() {
|
return "WorkstationEfficiencyQueryVO(shiftIndex=" + getShiftIndex() + ", workstationIds=" + getWorkstationIds() + ", startTime=" + getStartTime() + ", endTime=" + getEndTime() + ")";
|
}
|
|
public List<Integer> getShiftIndex() {
|
return this.shiftIndex;
|
}
|
|
public List<Long> getWorkstationIds() {
|
return this.workstationIds;
|
}
|
|
public String getStartTime() {
|
return this.startTime;
|
}
|
|
public String getEndTime() {
|
return this.endTime;
|
}
|
}
|