Helius
2021-06-28 1ae21f2e7931839bba5187c87f1627089253e7cf
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
package com.xzx.gc.model.query;
 
/**
 * 查询选项
 * @author lijiazhi
 *
 */
public class QueryItem {
    private String fieldName;
    private String name;
    private int type =1 ;
    private boolean show=false;
    private String dictName="";
    private boolean fuzzy = false;
    private String group = null;
    
    public String getFieldName() {
        return fieldName;
    }
    public void setFieldName(String fieldName) {
        this.fieldName = fieldName;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getType() {
        return type;
    }
    public void setType(int type) {
        this.type = type;
    }
    public boolean isShow() {
        return show;
    }
    public void setShow(boolean show) {
        this.show = show;
    }
    public String getDictName() {
        return dictName;
    }
    
    public void setDictName(String dictName) {
        this.dictName = dictName;
    }
    public boolean isFuzzy() {
        return fuzzy;
    }
    public void setFuzzy(boolean fuzzy) {
        this.fuzzy = fuzzy;
    }
    public String getGroup() {
        return group;
    }
    public void setGroup(String group) {
        this.group = group;
    }
    
    
}