package com.qianwen.smartman.modules.system.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
@ApiModel(value = "CustomConditionFieldsSubmitVO", description = "提交自定义查询条件字段与导入条件提交VO")
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CustomConditionFieldsSubmitVO.class */
|
public class CustomConditionFieldsSubmitVO implements Serializable {
|
@ApiModelProperty("模板id")
|
private Long templateId;
|
@ApiModelProperty("业务类型")
|
private Integer businessType;
|
@ApiModelProperty("提交查询时为fieldIds,提交导入时为relationIds")
|
private List<Long> ids;
|
|
public void setTemplateId(final Long templateId) {
|
this.templateId = templateId;
|
}
|
|
public void setBusinessType(final Integer businessType) {
|
this.businessType = businessType;
|
}
|
|
public void setIds(final List<Long> ids) {
|
this.ids = ids;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof CustomConditionFieldsSubmitVO) {
|
CustomConditionFieldsSubmitVO other = (CustomConditionFieldsSubmitVO) o;
|
if (other.canEqual(this)) {
|
Object this$templateId = getTemplateId();
|
Object other$templateId = other.getTemplateId();
|
if (this$templateId == null) {
|
if (other$templateId != null) {
|
return false;
|
}
|
} else if (!this$templateId.equals(other$templateId)) {
|
return false;
|
}
|
Object this$businessType = getBusinessType();
|
Object other$businessType = other.getBusinessType();
|
if (this$businessType == null) {
|
if (other$businessType != null) {
|
return false;
|
}
|
} else if (!this$businessType.equals(other$businessType)) {
|
return false;
|
}
|
Object this$ids = getIds();
|
Object other$ids = other.getIds();
|
return this$ids == null ? other$ids == null : this$ids.equals(other$ids);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof CustomConditionFieldsSubmitVO;
|
}
|
|
public int hashCode() {
|
Object $templateId = getTemplateId();
|
int result = (1 * 59) + ($templateId == null ? 43 : $templateId.hashCode());
|
Object $businessType = getBusinessType();
|
int result2 = (result * 59) + ($businessType == null ? 43 : $businessType.hashCode());
|
Object $ids = getIds();
|
return (result2 * 59) + ($ids == null ? 43 : $ids.hashCode());
|
}
|
|
public String toString() {
|
return "CustomConditionFieldsSubmitVO(templateId=" + getTemplateId() + ", businessType=" + getBusinessType() + ", ids=" + getIds() + ")";
|
}
|
|
public Long getTemplateId() {
|
return this.templateId;
|
}
|
|
public Integer getBusinessType() {
|
return this.businessType;
|
}
|
|
public List<Long> getIds() {
|
return this.ids;
|
}
|
}
|