yangys
2025-11-18 8e944cfabb253fc2556588e308e282586043f7b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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;
    }
}