package com.qianwen.smartman.modules.system.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; @ApiModel(value = "CustomConditionFieldInfoVO", description = "查询字段信息VO") /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CustomConditionFieldInfoVO.class */ public class CustomConditionFieldInfoVO implements Serializable { @ApiModelProperty("字段id") private Long fieldId; @ApiModelProperty("描述提示文字") private String fieldDescription; @ApiModelProperty("字段编号") private String fieldCode; @ApiModelProperty("字段名称") private String fieldName; @ApiModelProperty("关系表id") private Long relationId; @ApiModelProperty("当前是否勾选排序") private Integer querySupport; @ApiModelProperty("查询字段排序") private Integer querySort; @ApiModelProperty("是否是系统字段 1是 0否") private Integer systemField; public void setFieldId(final Long fieldId) { this.fieldId = fieldId; } public void setFieldDescription(final String fieldDescription) { this.fieldDescription = fieldDescription; } public void setFieldCode(final String fieldCode) { this.fieldCode = fieldCode; } public void setFieldName(final String fieldName) { this.fieldName = fieldName; } public void setRelationId(final Long relationId) { this.relationId = relationId; } public void setQuerySupport(final Integer querySupport) { this.querySupport = querySupport; } public void setQuerySort(final Integer querySort) { this.querySort = querySort; } public void setSystemField(final Integer systemField) { this.systemField = systemField; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof CustomConditionFieldInfoVO) { CustomConditionFieldInfoVO other = (CustomConditionFieldInfoVO) o; if (other.canEqual(this)) { Object this$fieldId = getFieldId(); Object other$fieldId = other.getFieldId(); if (this$fieldId == null) { if (other$fieldId != null) { return false; } } else if (!this$fieldId.equals(other$fieldId)) { return false; } Object this$relationId = getRelationId(); Object other$relationId = other.getRelationId(); if (this$relationId == null) { if (other$relationId != null) { return false; } } else if (!this$relationId.equals(other$relationId)) { return false; } Object this$querySupport = getQuerySupport(); Object other$querySupport = other.getQuerySupport(); if (this$querySupport == null) { if (other$querySupport != null) { return false; } } else if (!this$querySupport.equals(other$querySupport)) { return false; } Object this$querySort = getQuerySort(); Object other$querySort = other.getQuerySort(); if (this$querySort == null) { if (other$querySort != null) { return false; } } else if (!this$querySort.equals(other$querySort)) { return false; } Object this$systemField = getSystemField(); Object other$systemField = other.getSystemField(); if (this$systemField == null) { if (other$systemField != null) { return false; } } else if (!this$systemField.equals(other$systemField)) { return false; } Object this$fieldDescription = getFieldDescription(); Object other$fieldDescription = other.getFieldDescription(); if (this$fieldDescription == null) { if (other$fieldDescription != null) { return false; } } else if (!this$fieldDescription.equals(other$fieldDescription)) { return false; } Object this$fieldCode = getFieldCode(); Object other$fieldCode = other.getFieldCode(); if (this$fieldCode == null) { if (other$fieldCode != null) { return false; } } else if (!this$fieldCode.equals(other$fieldCode)) { return false; } Object this$fieldName = getFieldName(); Object other$fieldName = other.getFieldName(); return this$fieldName == null ? other$fieldName == null : this$fieldName.equals(other$fieldName); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof CustomConditionFieldInfoVO; } public int hashCode() { Object $fieldId = getFieldId(); int result = (1 * 59) + ($fieldId == null ? 43 : $fieldId.hashCode()); Object $relationId = getRelationId(); int result2 = (result * 59) + ($relationId == null ? 43 : $relationId.hashCode()); Object $querySupport = getQuerySupport(); int result3 = (result2 * 59) + ($querySupport == null ? 43 : $querySupport.hashCode()); Object $querySort = getQuerySort(); int result4 = (result3 * 59) + ($querySort == null ? 43 : $querySort.hashCode()); Object $systemField = getSystemField(); int result5 = (result4 * 59) + ($systemField == null ? 43 : $systemField.hashCode()); Object $fieldDescription = getFieldDescription(); int result6 = (result5 * 59) + ($fieldDescription == null ? 43 : $fieldDescription.hashCode()); Object $fieldCode = getFieldCode(); int result7 = (result6 * 59) + ($fieldCode == null ? 43 : $fieldCode.hashCode()); Object $fieldName = getFieldName(); return (result7 * 59) + ($fieldName == null ? 43 : $fieldName.hashCode()); } public String toString() { return "CustomConditionFieldInfoVO(fieldId=" + getFieldId() + ", fieldDescription=" + getFieldDescription() + ", fieldCode=" + getFieldCode() + ", fieldName=" + getFieldName() + ", relationId=" + getRelationId() + ", querySupport=" + getQuerySupport() + ", querySort=" + getQuerySort() + ", systemField=" + getSystemField() + ")"; } public Long getFieldId() { return this.fieldId; } public String getFieldDescription() { return this.fieldDescription; } public String getFieldCode() { return this.fieldCode; } public String getFieldName() { return this.fieldName; } public Long getRelationId() { return this.relationId; } public Integer getQuerySupport() { return this.querySupport; } public Integer getQuerySort() { return this.querySort; } public Integer getSystemField() { return this.systemField; } }