admin
2021-10-12 664cc2fd39177fd3daa6d3988396c704d130882c
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
package org.yeshi.utils.generater.entity;
 
public class MybatisColumnData {
 
    private String column;
    private String property;
    //jdbcType
    private String type;
 
    private String jdbcType;
 
    public MybatisColumnData(String column, String property, String type, String jdbcType) {
        this.column = column;
        this.property = property;
        this.type = type;
        this.jdbcType = jdbcType;
    }
 
    public String getColumn() {
        return column;
    }
 
    public void setColumn(String column) {
        this.column = column;
    }
 
    public String getProperty() {
        return property;
    }
 
    public void setProperty(String property) {
        this.property = property;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getJdbcType() {
        return jdbcType;
    }
 
    public void setJdbcType(String jdbcType) {
        this.jdbcType = jdbcType;
    }
}