package com.qianwen.smartman.modules.report.vo;
|
|
|
public class WorkstationEfficiencyByShiftVO {
|
private String workstationCode;
|
private String workstationName;
|
private String shiftIndex;
|
private String time;
|
private String Item;
|
private String value;
|
|
public void setWorkstationCode(final String workstationCode) {
|
this.workstationCode = workstationCode;
|
}
|
|
public void setWorkstationName(final String workstationName) {
|
this.workstationName = workstationName;
|
}
|
|
public void setShiftIndex(final String shiftIndex) {
|
this.shiftIndex = shiftIndex;
|
}
|
|
public void setTime(final String time) {
|
this.time = time;
|
}
|
|
public void setItem(final String Item) {
|
this.Item = Item;
|
}
|
|
public void setValue(final String value) {
|
this.value = value;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof WorkstationEfficiencyByShiftVO) {
|
WorkstationEfficiencyByShiftVO other = (WorkstationEfficiencyByShiftVO) o;
|
if (other.canEqual(this)) {
|
Object this$workstationCode = getWorkstationCode();
|
Object other$workstationCode = other.getWorkstationCode();
|
if (this$workstationCode == null) {
|
if (other$workstationCode != null) {
|
return false;
|
}
|
} else if (!this$workstationCode.equals(other$workstationCode)) {
|
return false;
|
}
|
Object this$workstationName = getWorkstationName();
|
Object other$workstationName = other.getWorkstationName();
|
if (this$workstationName == null) {
|
if (other$workstationName != null) {
|
return false;
|
}
|
} else if (!this$workstationName.equals(other$workstationName)) {
|
return false;
|
}
|
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$time = getTime();
|
Object other$time = other.getTime();
|
if (this$time == null) {
|
if (other$time != null) {
|
return false;
|
}
|
} else if (!this$time.equals(other$time)) {
|
return false;
|
}
|
Object this$Item = getItem();
|
Object other$Item = other.getItem();
|
if (this$Item == null) {
|
if (other$Item != null) {
|
return false;
|
}
|
} else if (!this$Item.equals(other$Item)) {
|
return false;
|
}
|
Object this$value = getValue();
|
Object other$value = other.getValue();
|
return this$value == null ? other$value == null : this$value.equals(other$value);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof WorkstationEfficiencyByShiftVO;
|
}
|
|
public int hashCode() {
|
Object $workstationCode = getWorkstationCode();
|
int result = (1 * 59) + ($workstationCode == null ? 43 : $workstationCode.hashCode());
|
Object $workstationName = getWorkstationName();
|
int result2 = (result * 59) + ($workstationName == null ? 43 : $workstationName.hashCode());
|
Object $shiftIndex = getShiftIndex();
|
int result3 = (result2 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode());
|
Object $time = getTime();
|
int result4 = (result3 * 59) + ($time == null ? 43 : $time.hashCode());
|
Object $Item = getItem();
|
int result5 = (result4 * 59) + ($Item == null ? 43 : $Item.hashCode());
|
Object $value = getValue();
|
return (result5 * 59) + ($value == null ? 43 : $value.hashCode());
|
}
|
|
public String toString() {
|
return "WorkstationEfficiencyByShiftVO(workstationCode=" + getWorkstationCode() + ", workstationName=" + getWorkstationName() + ", shiftIndex=" + getShiftIndex() + ", time=" + getTime() + ", Item=" + getItem() + ", value=" + getValue() + ")";
|
}
|
|
public String getWorkstationCode() {
|
return this.workstationCode;
|
}
|
|
public String getWorkstationName() {
|
return this.workstationName;
|
}
|
|
public String getShiftIndex() {
|
return this.shiftIndex;
|
}
|
|
public String getTime() {
|
return this.time;
|
}
|
|
public String getItem() {
|
return this.Item;
|
}
|
|
public String getValue() {
|
return this.value;
|
}
|
}
|