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
| package cn.com.basic.face.discern.query.condition;
|
|
| public class DictionaryQueryCondition extends BaseCondition {
|
| public static final class FieldNames {
| /**
| * 类型
| */
| public static final String type = "type";
| }
|
| // 类型
| private String type;
|
| /**
| * Get 类型
| */
| public String getType() {
| return type;
| }
|
| /**
| * Set 类型
| */
| public void setType(String type) {
| this.type = type;
| }
|
| public String toString() {
| return
| ",类型 =" + type ;
| }
| }
|
|