|
|
@ -27,12 +27,12 @@ public class ArchivesNoSetting extends BaseEntity implements Serializable { |
|
|
|
private String id; |
|
|
|
|
|
|
|
@ApiModelProperty(value = "列名") |
|
|
|
@Column(name = "filed_cn_name") |
|
|
|
private String filedCnName; |
|
|
|
@Column(name = "field_cn_name") |
|
|
|
private String fieldCnName; |
|
|
|
|
|
|
|
@ApiModelProperty(value = "字段名") |
|
|
|
@Column(name = "filed_name") |
|
|
|
private String filedName; |
|
|
|
@Column(name = "field_name") |
|
|
|
private String fieldName; |
|
|
|
|
|
|
|
@ApiModelProperty(value = "连接符") |
|
|
|
@Column(name = "connector") |
|
|
@ -55,11 +55,11 @@ public class ArchivesNoSetting extends BaseEntity implements Serializable { |
|
|
|
if (this == o) return true; |
|
|
|
if (o == null || getClass() != o.getClass()) return false; |
|
|
|
ArchivesNoSetting that = (ArchivesNoSetting) o; |
|
|
|
return Objects.equals(id, that.id) && Objects.equals(filedCnName, that.filedCnName) && Objects.equals(filedName, that.filedName) && Objects.equals(connector, that.connector) && Objects.equals(sequence, that.sequence) && Objects.equals(categoryId, that.categoryId) && Objects.equals(dictionaryId, that.dictionaryId); |
|
|
|
return Objects.equals(id, that.id) && Objects.equals(fieldCnName, that.fieldCnName) && Objects.equals(fieldName, that.fieldName) && Objects.equals(connector, that.connector) && Objects.equals(sequence, that.sequence) && Objects.equals(categoryId, that.categoryId) && Objects.equals(dictionaryId, that.dictionaryId); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public int hashCode() { |
|
|
|
return Objects.hash(id, filedCnName, filedName, connector, sequence, categoryId, dictionaryId); |
|
|
|
return Objects.hash(id, fieldCnName, fieldName, connector, sequence, categoryId, dictionaryId); |
|
|
|
} |
|
|
|
} |