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
package com.qianwen.smartman.modules.notify.dto;
 
import io.swagger.annotations.ApiModelProperty;
import java.util.List;
import com.qianwen.smartman.modules.notify.entity.NotifyConfigEntity;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/NotifyTypeInfo.class */
public class NotifyTypeInfo {
    @ApiModelProperty("通知类型ID")
    private String id;
    @ApiModelProperty("通知类型名称")
    private String name;
    @ApiModelProperty("服务商信息")
    private List<ProviderInfo> providerInfos;
    @ApiModelProperty("服务配置信息")
    private NotifyConfigEntity configEntity;
    @ApiModelProperty("是否有业务绑定")
    private Boolean isBindBusiness;
    @ApiModelProperty("企业名称")
    private String companyName;
 
    public void setId(final String id) {
        this.id = id;
    }
 
    public void setName(final String name) {
        this.name = name;
    }
 
    public void setProviderInfos(final List<ProviderInfo> providerInfos) {
        this.providerInfos = providerInfos;
    }
 
    public void setConfigEntity(final NotifyConfigEntity configEntity) {
        this.configEntity = configEntity;
    }
 
    public void setIsBindBusiness(final Boolean isBindBusiness) {
        this.isBindBusiness = isBindBusiness;
    }
 
    public void setCompanyName(final String companyName) {
        this.companyName = companyName;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof NotifyTypeInfo) {
            NotifyTypeInfo other = (NotifyTypeInfo) o;
            if (other.canEqual(this)) {
                Object this$id = getId();
                Object other$id = other.getId();
                return this$id == null ? other$id == null : this$id.equals(other$id);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof NotifyTypeInfo;
    }
 
    public int hashCode() {
        Object $id = getId();
        int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
        return result;
    }
 
    public String getId() {
        return this.id;
    }
 
    public String getName() {
        return this.name;
    }
 
    public List<ProviderInfo> getProviderInfos() {
        return this.providerInfos;
    }
 
    public NotifyConfigEntity getConfigEntity() {
        return this.configEntity;
    }
 
    public Boolean getIsBindBusiness() {
        return this.isBindBusiness;
    }
 
    public String getCompanyName() {
        return this.companyName;
    }
}