package com.qianwen.smartman.modules.mdc.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/OutputStatisticsQueryVO.class */
|
public class OutputStatisticsQueryVO extends StatisticsQueryVO {
|
private static final long serialVersionUID = 8887294568778572201L;
|
@ApiModelProperty("查询类型 0-柱状图 1-表格")
|
private Integer queryType;
|
|
@Override // org.springblade.modules.mdc.vo.StatisticsQueryVO
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof OutputStatisticsQueryVO) {
|
OutputStatisticsQueryVO other = (OutputStatisticsQueryVO) o;
|
if (other.canEqual(this) && super.equals(o)) {
|
Object this$queryType = getQueryType();
|
Object other$queryType = other.getQueryType();
|
return this$queryType == null ? other$queryType == null : this$queryType.equals(other$queryType);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
@Override // org.springblade.modules.mdc.vo.StatisticsQueryVO
|
protected boolean canEqual(final Object other) {
|
return other instanceof OutputStatisticsQueryVO;
|
}
|
|
@Override // org.springblade.modules.mdc.vo.StatisticsQueryVO
|
public int hashCode() {
|
int result = super.hashCode();
|
Object $queryType = getQueryType();
|
return (result * 59) + ($queryType == null ? 43 : $queryType.hashCode());
|
}
|
|
public OutputStatisticsQueryVO setQueryType(final Integer queryType) {
|
this.queryType = queryType;
|
return this;
|
}
|
|
@Override // org.springblade.modules.mdc.vo.StatisticsQueryVO
|
public String toString() {
|
return "OutputStatisticsQueryVO(queryType=" + getQueryType() + ")";
|
}
|
|
public Integer getQueryType() {
|
return this.queryType;
|
}
|
}
|