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
package com.qianwen.smartman.modules.notify.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.util.List;
import com.qianwen.smartman.modules.notify.dto.BusinessNotifyDTO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/vo/BusinessNotifyVO.class */
public class BusinessNotifyVO {
    @ApiModelProperty("设置")
    NotifyDefaultObjectVO defaultObject;
    @ApiModelProperty("设置")
    List<BusinessNotifyDTO> businessNotifyDTOList;
 
    public void setDefaultObject(final NotifyDefaultObjectVO defaultObject) {
        this.defaultObject = defaultObject;
    }
 
    public void setBusinessNotifyDTOList(final List<BusinessNotifyDTO> businessNotifyDTOList) {
        this.businessNotifyDTOList = businessNotifyDTOList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof BusinessNotifyVO) {
            BusinessNotifyVO other = (BusinessNotifyVO) o;
            if (other.canEqual(this)) {
                Object this$defaultObject = getDefaultObject();
                Object other$defaultObject = other.getDefaultObject();
                if (this$defaultObject == null) {
                    if (other$defaultObject != null) {
                        return false;
                    }
                } else if (!this$defaultObject.equals(other$defaultObject)) {
                    return false;
                }
                Object this$businessNotifyDTOList = getBusinessNotifyDTOList();
                Object other$businessNotifyDTOList = other.getBusinessNotifyDTOList();
                return this$businessNotifyDTOList == null ? other$businessNotifyDTOList == null : this$businessNotifyDTOList.equals(other$businessNotifyDTOList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof BusinessNotifyVO;
    }
 
    public int hashCode() {
        Object $defaultObject = getDefaultObject();
        int result = (1 * 59) + ($defaultObject == null ? 43 : $defaultObject.hashCode());
        Object $businessNotifyDTOList = getBusinessNotifyDTOList();
        return (result * 59) + ($businessNotifyDTOList == null ? 43 : $businessNotifyDTOList.hashCode());
    }
 
    public String toString() {
        return "BusinessNotifyVO(defaultObject=" + getDefaultObject() + ", businessNotifyDTOList=" + getBusinessNotifyDTOList() + ")";
    }
 
    public NotifyDefaultObjectVO getDefaultObject() {
        return this.defaultObject;
    }
 
    public List<BusinessNotifyDTO> getBusinessNotifyDTOList() {
        return this.businessNotifyDTOList;
    }
}