package com.qianwen.smartman.modules.system.entity;
|
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/entity/TableColumn.class */
|
public class TableColumn implements Serializable {
|
private String columnName;
|
private String columnComment;
|
|
public void setColumnName(final String columnName) {
|
this.columnName = columnName;
|
}
|
|
public void setColumnComment(final String columnComment) {
|
this.columnComment = columnComment;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof TableColumn) {
|
TableColumn other = (TableColumn) o;
|
if (other.canEqual(this)) {
|
Object this$columnName = getColumnName();
|
Object other$columnName = other.getColumnName();
|
if (this$columnName == null) {
|
if (other$columnName != null) {
|
return false;
|
}
|
} else if (!this$columnName.equals(other$columnName)) {
|
return false;
|
}
|
Object this$columnComment = getColumnComment();
|
Object other$columnComment = other.getColumnComment();
|
return this$columnComment == null ? other$columnComment == null : this$columnComment.equals(other$columnComment);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof TableColumn;
|
}
|
|
public int hashCode() {
|
Object $columnName = getColumnName();
|
int result = (1 * 59) + ($columnName == null ? 43 : $columnName.hashCode());
|
Object $columnComment = getColumnComment();
|
return (result * 59) + ($columnComment == null ? 43 : $columnComment.hashCode());
|
}
|
|
public String toString() {
|
return "TableColumn(columnName=" + getColumnName() + ", columnComment=" + getColumnComment() + ")";
|
}
|
|
public String getColumnName() {
|
return this.columnName;
|
}
|
|
public String getColumnComment() {
|
return this.columnComment;
|
}
|
}
|