package com.qianwen.smartman.modules.mdc.vo; import com.baomidou.mybatisplus.core.metadata.IPage; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/StatisticsVO.class */ public class StatisticsVO implements Serializable { private static final long serialVersionUID = -3589285923990425186L; @ApiModelProperty("数据") private IPage items; public StatisticsVO setItems(final IPage 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 getItems() { return this.items; } }