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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.qianwen.smartman.modules.dnc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FtpDirectoryVO.class */
public class FtpDirectoryVO implements Serializable {
    private static final long serialVersionUID = -7168712787807032171L;
    @ApiModelProperty("路径")
    private String path;
    @ApiModelProperty("路径下的资源")
    private List<EntityInfoVO> list;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FtpDirectoryVO$FtpDirectoryVOBuilder.class */
    public static class FtpDirectoryVOBuilder {
        private String path;
        private List<EntityInfoVO> list;
 
        FtpDirectoryVOBuilder() {
        }
 
        public FtpDirectoryVOBuilder path(final String path) {
            this.path = path;
            return this;
        }
 
        public FtpDirectoryVOBuilder list(final List<EntityInfoVO> list) {
            this.list = list;
            return this;
        }
 
        public FtpDirectoryVO build() {
            return new FtpDirectoryVO(this.path, this.list);
        }
 
        public String toString() {
            return "FtpDirectoryVO.FtpDirectoryVOBuilder(path=" + this.path + ", list=" + this.list + ")";
        }
    }
 
    public void setPath(final String path) {
        this.path = path;
    }
 
    public void setList(final List<EntityInfoVO> list) {
        this.list = list;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof FtpDirectoryVO) {
            FtpDirectoryVO other = (FtpDirectoryVO) o;
            if (other.canEqual(this)) {
                Object this$path = getPath();
                Object other$path = other.getPath();
                if (this$path == null) {
                    if (other$path != null) {
                        return false;
                    }
                } else if (!this$path.equals(other$path)) {
                    return false;
                }
                Object this$list = getList();
                Object other$list = other.getList();
                return this$list == null ? other$list == null : this$list.equals(other$list);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof FtpDirectoryVO;
    }
 
    public int hashCode() {
        Object $path = getPath();
        int result = (1 * 59) + ($path == null ? 43 : $path.hashCode());
        Object $list = getList();
        return (result * 59) + ($list == null ? 43 : $list.hashCode());
    }
 
    public String toString() {
        return "FtpDirectoryVO(path=" + getPath() + ", list=" + getList() + ")";
    }
 
    public static FtpDirectoryVOBuilder builder() {
        return new FtpDirectoryVOBuilder();
    }
 
    public FtpDirectoryVO() {
    }
 
    public FtpDirectoryVO(final String path, final List<EntityInfoVO> list) {
        this.path = path;
        this.list = list;
    }
 
    public String getPath() {
        return this.path;
    }
 
    public List<EntityInfoVO> getList() {
        return this.list;
    }
}