xuxiuxi
2017-04-11 257bc68fa55f55951c1cf8b7de4045039d27d64e
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
package cn.com.basic.face.discern.query.item;
 
 
public class VistorTypeQueryItem {
 
    // 访客类型主键
    private String id;
    // 访客类型
    private String label;
 
    /**
     * Get 访客类型主键
     */
    public String getId() {
        return id;
    }
    
    /**
     * Set 访客类型主键
     */
    public void setId(String id) {
        this.id = id;
    }
 
    /**
     * Get 访客类型
     */
    public String getLabel() {
        return label;
    }
    
    /**
     * Set 访客类型
     */
    public void setLabel(String label) {
        this.label = label;
    }
 
    public String toString() {
        return 
             ",访客类型主键 ="+ id         +  ",访客类型 =" + label     ;
    }
}