package com.qianwen.smartman.modules.mdc.vo.excel;
|
|
|
public class OutputStatisticsExcelVO extends TimeUsedExcelVO {
|
@Override
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof OutputStatisticsExcelVO) {
|
OutputStatisticsExcelVO other = (OutputStatisticsExcelVO) o;
|
return other.canEqual(this) && super.equals(o);
|
}
|
return false;
|
}
|
|
@Override
|
protected boolean canEqual(final Object other) {
|
return other instanceof OutputStatisticsExcelVO;
|
}
|
|
@Override
|
public int hashCode() {
|
int result = super.hashCode();
|
return result;
|
}
|
|
@Override
|
public String toString() {
|
return "OutputStatisticsExcelVO()";
|
}
|
}
|