yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.mdc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Collection;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/SplitFilterListVO.class */
public class SplitFilterListVO implements Serializable {
    private static final long serialVersionUID = 1;
    @ApiModelProperty("分割后的条件列表")
    private Collection<SplitFilterVO> items;
 
    public void setItems(final Collection<SplitFilterVO> items) {
        this.items = items;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof SplitFilterListVO) {
            SplitFilterListVO other = (SplitFilterListVO) 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 SplitFilterListVO;
    }
 
    public int hashCode() {
        Object $items = getItems();
        int result = (1 * 59) + ($items == null ? 43 : $items.hashCode());
        return result;
    }
 
    public String toString() {
        return "SplitFilterListVO(items=" + getItems() + ")";
    }
 
    public Collection<SplitFilterVO> getItems() {
        return this.items;
    }
}