package com.qianwen.smartman.modules.notify.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/BusinessNotifyQueryDTO.class */
|
public class BusinessNotifyQueryDTO implements Serializable {
|
@ApiModelProperty("业务key")
|
private String businessKey;
|
@ApiModelProperty("通知类型")
|
private String notifyType;
|
@ApiModelProperty("通知配置")
|
private String notifyId;
|
@ApiModelProperty("通知模板")
|
private String notifyTemplateId;
|
|
public BusinessNotifyQueryDTO setBusinessKey(final String businessKey) {
|
this.businessKey = businessKey;
|
return this;
|
}
|
|
public BusinessNotifyQueryDTO setNotifyType(final String notifyType) {
|
this.notifyType = notifyType;
|
return this;
|
}
|
|
public BusinessNotifyQueryDTO setNotifyId(final String notifyId) {
|
this.notifyId = notifyId;
|
return this;
|
}
|
|
public BusinessNotifyQueryDTO setNotifyTemplateId(final String notifyTemplateId) {
|
this.notifyTemplateId = notifyTemplateId;
|
return this;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof BusinessNotifyQueryDTO) {
|
BusinessNotifyQueryDTO other = (BusinessNotifyQueryDTO) o;
|
if (other.canEqual(this)) {
|
Object this$businessKey = getBusinessKey();
|
Object other$businessKey = other.getBusinessKey();
|
if (this$businessKey == null) {
|
if (other$businessKey != null) {
|
return false;
|
}
|
} else if (!this$businessKey.equals(other$businessKey)) {
|
return false;
|
}
|
Object this$notifyType = getNotifyType();
|
Object other$notifyType = other.getNotifyType();
|
if (this$notifyType == null) {
|
if (other$notifyType != null) {
|
return false;
|
}
|
} else if (!this$notifyType.equals(other$notifyType)) {
|
return false;
|
}
|
Object this$notifyId = getNotifyId();
|
Object other$notifyId = other.getNotifyId();
|
if (this$notifyId == null) {
|
if (other$notifyId != null) {
|
return false;
|
}
|
} else if (!this$notifyId.equals(other$notifyId)) {
|
return false;
|
}
|
Object this$notifyTemplateId = getNotifyTemplateId();
|
Object other$notifyTemplateId = other.getNotifyTemplateId();
|
return this$notifyTemplateId == null ? other$notifyTemplateId == null : this$notifyTemplateId.equals(other$notifyTemplateId);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof BusinessNotifyQueryDTO;
|
}
|
|
public int hashCode() {
|
Object $businessKey = getBusinessKey();
|
int result = (1 * 59) + ($businessKey == null ? 43 : $businessKey.hashCode());
|
Object $notifyType = getNotifyType();
|
int result2 = (result * 59) + ($notifyType == null ? 43 : $notifyType.hashCode());
|
Object $notifyId = getNotifyId();
|
int result3 = (result2 * 59) + ($notifyId == null ? 43 : $notifyId.hashCode());
|
Object $notifyTemplateId = getNotifyTemplateId();
|
return (result3 * 59) + ($notifyTemplateId == null ? 43 : $notifyTemplateId.hashCode());
|
}
|
|
public String toString() {
|
return "BusinessNotifyQueryDTO(businessKey=" + getBusinessKey() + ", notifyType=" + getNotifyType() + ", notifyId=" + getNotifyId() + ", notifyTemplateId=" + getNotifyTemplateId() + ")";
|
}
|
|
public String getBusinessKey() {
|
return this.businessKey;
|
}
|
|
public String getNotifyType() {
|
return this.notifyType;
|
}
|
|
public String getNotifyId() {
|
return this.notifyId;
|
}
|
|
public String getNotifyTemplateId() {
|
return this.notifyTemplateId;
|
}
|
}
|