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
package org.yeshi.utils.generater.entity;
 
import org.yeshi.utils.generater.annotation.admin.DaoQueryCondition;
 
public class MapperQueryColumnData {
 
    //查询方式
    private DaoQueryCondition.QueryType queryType;
    private String property;
    private MybatisColumnData column;
 
 
    public DaoQueryCondition.QueryType getQueryType() {
        return queryType;
    }
 
    public void setQueryType(DaoQueryCondition.QueryType queryType) {
        this.queryType = queryType;
    }
 
    public String getProperty() {
        return property;
    }
 
    public void setProperty(String property) {
        this.property = property;
    }
 
    public MybatisColumnData getColumn() {
        return column;
    }
 
    public void setColumn(MybatisColumnData column) {
        this.column = column;
    }
}