yangys
2024-03-31 53c8d3e3bd3596132b362f20e52aef380d493a84
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.qianwen.smartman.modules.system.entity;
 
import java.io.Serializable;
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/entity/TableDetail.class */
public class TableDetail implements Serializable {
    private String tableName;
    private String tableComment;
    private List<TableColumn> tableColumns;
 
    public void setTableName(final String tableName) {
        this.tableName = tableName;
    }
 
    public void setTableComment(final String tableComment) {
        this.tableComment = tableComment;
    }
 
    public void setTableColumns(final List<TableColumn> tableColumns) {
        this.tableColumns = tableColumns;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof TableDetail) {
            TableDetail other = (TableDetail) o;
            if (other.canEqual(this)) {
                Object this$tableName = getTableName();
                Object other$tableName = other.getTableName();
                if (this$tableName == null) {
                    if (other$tableName != null) {
                        return false;
                    }
                } else if (!this$tableName.equals(other$tableName)) {
                    return false;
                }
                Object this$tableComment = getTableComment();
                Object other$tableComment = other.getTableComment();
                if (this$tableComment == null) {
                    if (other$tableComment != null) {
                        return false;
                    }
                } else if (!this$tableComment.equals(other$tableComment)) {
                    return false;
                }
                Object this$tableColumns = getTableColumns();
                Object other$tableColumns = other.getTableColumns();
                return this$tableColumns == null ? other$tableColumns == null : this$tableColumns.equals(other$tableColumns);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof TableDetail;
    }
 
    public int hashCode() {
        Object $tableName = getTableName();
        int result = (1 * 59) + ($tableName == null ? 43 : $tableName.hashCode());
        Object $tableComment = getTableComment();
        int result2 = (result * 59) + ($tableComment == null ? 43 : $tableComment.hashCode());
        Object $tableColumns = getTableColumns();
        return (result2 * 59) + ($tableColumns == null ? 43 : $tableColumns.hashCode());
    }
 
    public String toString() {
        return "TableDetail(tableName=" + getTableName() + ", tableComment=" + getTableComment() + ", tableColumns=" + getTableColumns() + ")";
    }
 
    public String getTableName() {
        return this.tableName;
    }
 
    public String getTableComment() {
        return this.tableComment;
    }
 
    public List<TableColumn> getTableColumns() {
        return this.tableColumns;
    }
}