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
package com.qianwen.smartman.modules.notify.dto;
 
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/NotifyBusinessSendDTO.class */
public class NotifyBusinessSendDTO {
    private List<Long> empIds;
    private List<Long> orgIds;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/NotifyBusinessSendDTO$NotifyBusinessSendDTOBuilder.class */
    public static class NotifyBusinessSendDTOBuilder {
        private List<Long> empIds;
        private List<Long> orgIds;
 
        NotifyBusinessSendDTOBuilder() {
        }
 
        public NotifyBusinessSendDTOBuilder empIds(final List<Long> empIds) {
            this.empIds = empIds;
            return this;
        }
 
        public NotifyBusinessSendDTOBuilder orgIds(final List<Long> orgIds) {
            this.orgIds = orgIds;
            return this;
        }
 
        public NotifyBusinessSendDTO build() {
            return new NotifyBusinessSendDTO(this.empIds, this.orgIds);
        }
 
        public String toString() {
            return "NotifyBusinessSendDTO.NotifyBusinessSendDTOBuilder(empIds=" + this.empIds + ", orgIds=" + this.orgIds + ")";
        }
    }
 
    public void setEmpIds(final List<Long> empIds) {
        this.empIds = empIds;
    }
 
    public void setOrgIds(final List<Long> orgIds) {
        this.orgIds = orgIds;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof NotifyBusinessSendDTO) {
            NotifyBusinessSendDTO other = (NotifyBusinessSendDTO) o;
            if (other.canEqual(this)) {
                Object this$empIds = getEmpIds();
                Object other$empIds = other.getEmpIds();
                if (this$empIds == null) {
                    if (other$empIds != null) {
                        return false;
                    }
                } else if (!this$empIds.equals(other$empIds)) {
                    return false;
                }
                Object this$orgIds = getOrgIds();
                Object other$orgIds = other.getOrgIds();
                return this$orgIds == null ? other$orgIds == null : this$orgIds.equals(other$orgIds);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof NotifyBusinessSendDTO;
    }
 
    public int hashCode() {
        Object $empIds = getEmpIds();
        int result = (1 * 59) + ($empIds == null ? 43 : $empIds.hashCode());
        Object $orgIds = getOrgIds();
        return (result * 59) + ($orgIds == null ? 43 : $orgIds.hashCode());
    }
 
    public String toString() {
        return "NotifyBusinessSendDTO(empIds=" + getEmpIds() + ", orgIds=" + getOrgIds() + ")";
    }
 
    NotifyBusinessSendDTO(final List<Long> empIds, final List<Long> orgIds) {
        this.empIds = empIds;
        this.orgIds = orgIds;
    }
 
    public static NotifyBusinessSendDTOBuilder builder() {
        return new NotifyBusinessSendDTOBuilder();
    }
 
    public List<Long> getEmpIds() {
        return this.empIds;
    }
 
    public List<Long> getOrgIds() {
        return this.orgIds;
    }
}