admin
2021-06-30 d577762cafe94d9399d77cb4c6955ab176ff35ef
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
package org.yeshi.utils.generater.entity;
 
public class MybatisColumnData {
 
    private String column;
    private String property;
    private String type;
 
    public MybatisColumnData(String column, String property, String type) {
        this.column = column;
        this.property = property;
        this.type = type;
    }
 
    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;
    }
}