Helius
2021-02-26 de04085526eda992155716eda98af621ad681e4e
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package com.matrix.codeGeneration.model;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 数据表和java的对应模型
 * 
 * @author Matrix-J
 *
 */
public class TableClassModel {
 
    /**
     * 类的中文名称
     */
    private String tableMemo;
 
    /**
     * 类名
     */
    private String className;
    
    /**
     * bean的名称
     */
    private String beanClassName;
    
    private String fullClassName;
    
    private String qualifiedClassName;
 
    /**
     * 表名
     */
    private String tableName;
 
    /**
     * 类的变量名称
     */
    private String classVariableName;
    /**
     * 主键
     */
    private PropertyColumn primaryKey;
 
    private List<PropertyColumn> mapping = new ArrayList<PropertyColumn>();
    
    /**
     * 展示到页面的字段个数 addByzhangheng
     */
    private Integer showCount;
 
    public TableClassModel() {
    }
  
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    public String getClassName() {
        return className;
    }
 
    public void setClassName(String className) {
        this.className = className;
    }
 
    public List<PropertyColumn> getMapping() {
        return mapping;
    }
 
    public void setMapping(List<PropertyColumn> mapping) {
        this.mapping = mapping;
    }
 
    public PropertyColumn getPrimaryKey() {
        return primaryKey;
    }
 
    public void setPrimaryKey(PropertyColumn primaryKey) {
        this.primaryKey = primaryKey;
    }
 
 
    public String getClassVariableName() {
        return classVariableName;
    }
 
    public void setClassVariableName(String classVariableName) {
        this.classVariableName = classVariableName;
    }
 
     
 
    public String getTableMemo() {
        return tableMemo;
    }
 
    public void setTableMemo(String tableMemo) {
        this.tableMemo = tableMemo;
    }
 
 
    public String getBeanClassName() {
        return beanClassName;
    }
 
 
    public void setBeanClassName(String beanClassName) {
        this.beanClassName = beanClassName;
    }
 
 
    public String getFullClassName() {
        return fullClassName;
    }
 
 
    public void setFullClassName(String fullClassName) {
        this.fullClassName = fullClassName;
    }
 
 
    public String getQualifiedClassName() {
        return qualifiedClassName;
    }
 
 
    public void setQualifiedClassName(String qualifiedClassName) {
        this.qualifiedClassName = qualifiedClassName;
    }
 
 
    public Integer getShowCount() {
        return showCount;
    }
 
 
    public void setShowCount(Integer showCount) {
        this.showCount = showCount;
    }
 
    
}