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 businessNotifyDTOList; public void setDefaultObject(final NotifyDefaultObjectVO defaultObject) { this.defaultObject = defaultObject; } public void setBusinessNotifyDTOList(final List 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 getBusinessNotifyDTOList() { return this.businessNotifyDTOList; } }