package com.qianwen.smartman.modules.report.vo;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/report/vo/OutputShiftResultVO.class */
|
public class OutputShiftResultVO extends OutputResultVO {
|
private String shiftName;
|
private Integer shiftIndex;
|
private String shiftDate;
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof OutputShiftResultVO) {
|
OutputShiftResultVO other = (OutputShiftResultVO) o;
|
if (other.canEqual(this) && super.equals(o)) {
|
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$shiftName = getShiftName();
|
Object other$shiftName = other.getShiftName();
|
if (this$shiftName == null) {
|
if (other$shiftName != null) {
|
return false;
|
}
|
} else if (!this$shiftName.equals(other$shiftName)) {
|
return false;
|
}
|
Object this$shiftDate = getShiftDate();
|
Object other$shiftDate = other.getShiftDate();
|
return this$shiftDate == null ? other$shiftDate == null : this$shiftDate.equals(other$shiftDate);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof OutputShiftResultVO;
|
}
|
|
public int hashCode() {
|
int result = super.hashCode();
|
Object $shiftIndex = getShiftIndex();
|
int result2 = (result * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode());
|
Object $shiftName = getShiftName();
|
int result3 = (result2 * 59) + ($shiftName == null ? 43 : $shiftName.hashCode());
|
Object $shiftDate = getShiftDate();
|
return (result3 * 59) + ($shiftDate == null ? 43 : $shiftDate.hashCode());
|
}
|
|
public void setShiftName(final String shiftName) {
|
this.shiftName = shiftName;
|
}
|
|
public void setShiftIndex(final Integer shiftIndex) {
|
this.shiftIndex = shiftIndex;
|
}
|
|
public void setShiftDate(final String shiftDate) {
|
this.shiftDate = shiftDate;
|
}
|
|
public OutputShiftResultVO(final String shiftName, final Integer shiftIndex, final String shiftDate) {
|
this.shiftName = shiftName;
|
this.shiftIndex = shiftIndex;
|
this.shiftDate = shiftDate;
|
}
|
|
public OutputShiftResultVO() {
|
}
|
|
public String getShiftName() {
|
return this.shiftName;
|
}
|
|
public Integer getShiftIndex() {
|
return this.shiftIndex;
|
}
|
|
public String getShiftDate() {
|
return this.shiftDate;
|
}
|
}
|