package com.qianwen.smartman.modules.trace.vo;
|
|
import java.io.Serializable;
|
|
|
public class MachiningWorkstationVO implements Serializable {
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof MachiningWorkstationVO) {
|
MachiningWorkstationVO other = (MachiningWorkstationVO) o;
|
return other.canEqual(this);
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof MachiningWorkstationVO;
|
}
|
|
public int hashCode() {
|
return 1;
|
}
|
|
public String toString() {
|
return "MachiningWorkstationVO()";
|
}
|
}
|