package com.qianwen.smartman.modules.mdc.vo;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
|
public class StatisticsVO implements Serializable {
|
private static final long serialVersionUID = -3589285923990425186L;
|
@ApiModelProperty("数据")
|
private IPage<StatisticsDataVO> items;
|
|
public StatisticsVO setItems(final IPage<StatisticsDataVO> items) {
|
this.items = items;
|
return this;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof StatisticsVO) {
|
StatisticsVO other = (StatisticsVO) o;
|
if (other.canEqual(this)) {
|
Object this$items = getItems();
|
Object other$items = other.getItems();
|
return this$items == null ? other$items == null : this$items.equals(other$items);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof StatisticsVO;
|
}
|
|
public int hashCode() {
|
Object $items = getItems();
|
int result = (1 * 59) + ($items == null ? 43 : $items.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "StatisticsVO(items=" + getItems() + ")";
|
}
|
|
public IPage<StatisticsDataVO> getItems() {
|
return this.items;
|
}
|
}
|