yangys
2024-04-01 86cdd920b68274185233383f69ddb974052b6b6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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;
    }
}