package com.qianwen.smartman.modules.system.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; @ApiModel(value = "CustomImportFieldInfoVO", description = "导入字段信息VO") /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CustomImportFieldInfoVO.class */ public class CustomImportFieldInfoVO implements Serializable { @ApiModelProperty("字段id") private Long fieldId; @ApiModelProperty("字段编号") private String fieldCode; @ApiModelProperty("字段名称") private String fieldName; @ApiModelProperty("关系表id") private Long relationId; @ApiModelProperty("是否勾选导入") private Integer importField; @ApiModelProperty("导入字段排序") private Integer importSort; @ApiModelProperty("是否是系统字段 1是 0否") private Integer systemField; @ApiModelProperty("是否必填 0否 1是") private Integer mustField; private Integer sort; public void setFieldId(final Long fieldId) { this.fieldId = fieldId; } 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 setImportField(final Integer importField) { this.importField = importField; } public void setImportSort(final Integer importSort) { this.importSort = importSort; } public void setSystemField(final Integer systemField) { this.systemField = systemField; } public void setMustField(final Integer mustField) { this.mustField = mustField; } public void setSort(final Integer sort) { this.sort = sort; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof CustomImportFieldInfoVO) { CustomImportFieldInfoVO other = (CustomImportFieldInfoVO) 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$importField = getImportField(); Object other$importField = other.getImportField(); if (this$importField == null) { if (other$importField != null) { return false; } } else if (!this$importField.equals(other$importField)) { return false; } Object this$importSort = getImportSort(); Object other$importSort = other.getImportSort(); if (this$importSort == null) { if (other$importSort != null) { return false; } } else if (!this$importSort.equals(other$importSort)) { 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$mustField = getMustField(); Object other$mustField = other.getMustField(); if (this$mustField == null) { if (other$mustField != null) { return false; } } else if (!this$mustField.equals(other$mustField)) { return false; } Object this$sort = getSort(); Object other$sort = other.getSort(); if (this$sort == null) { if (other$sort != null) { return false; } } else if (!this$sort.equals(other$sort)) { 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 CustomImportFieldInfoVO; } 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 $importField = getImportField(); int result3 = (result2 * 59) + ($importField == null ? 43 : $importField.hashCode()); Object $importSort = getImportSort(); int result4 = (result3 * 59) + ($importSort == null ? 43 : $importSort.hashCode()); Object $systemField = getSystemField(); int result5 = (result4 * 59) + ($systemField == null ? 43 : $systemField.hashCode()); Object $mustField = getMustField(); int result6 = (result5 * 59) + ($mustField == null ? 43 : $mustField.hashCode()); Object $sort = getSort(); int result7 = (result6 * 59) + ($sort == null ? 43 : $sort.hashCode()); Object $fieldCode = getFieldCode(); int result8 = (result7 * 59) + ($fieldCode == null ? 43 : $fieldCode.hashCode()); Object $fieldName = getFieldName(); return (result8 * 59) + ($fieldName == null ? 43 : $fieldName.hashCode()); } public String toString() { return "CustomImportFieldInfoVO(fieldId=" + getFieldId() + ", fieldCode=" + getFieldCode() + ", fieldName=" + getFieldName() + ", relationId=" + getRelationId() + ", importField=" + getImportField() + ", importSort=" + getImportSort() + ", systemField=" + getSystemField() + ", mustField=" + getMustField() + ", sort=" + getSort() + ")"; } public Long getFieldId() { return this.fieldId; } public String getFieldCode() { return this.fieldCode; } public String getFieldName() { return this.fieldName; } public Long getRelationId() { return this.relationId; } public Integer getImportField() { return this.importField; } public Integer getImportSort() { return this.importSort; } public Integer getSystemField() { return this.systemField; } public Integer getMustField() { return this.mustField; } public Integer getSort() { return this.sort; } }