yangys
2024-03-29 153cc3fd4ef015a8b1390b2eef3d102c5859a5e7
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
package com.qianwen.smartman.modules.dnc.vo;
 
import java.util.Collection;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/DeleteFileVO.class */
public class DeleteFileVO {
    private Collection<Long> sourceIdList;
 
    public void setSourceIdList(final Collection<Long> sourceIdList) {
        this.sourceIdList = sourceIdList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DeleteFileVO) {
            DeleteFileVO other = (DeleteFileVO) o;
            if (other.canEqual(this)) {
                Object this$sourceIdList = getSourceIdList();
                Object other$sourceIdList = other.getSourceIdList();
                return this$sourceIdList == null ? other$sourceIdList == null : this$sourceIdList.equals(other$sourceIdList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DeleteFileVO;
    }
 
    public int hashCode() {
        Object $sourceIdList = getSourceIdList();
        int result = (1 * 59) + ($sourceIdList == null ? 43 : $sourceIdList.hashCode());
        return result;
    }
 
    public String toString() {
        return "DeleteFileVO(sourceIdList=" + getSourceIdList() + ")";
    }
 
    public Collection<Long> getSourceIdList() {
        return this.sourceIdList;
    }
}