xuxiuxi
2017-04-10 0235abfeeba62dd5b901cd54be9ed64e0b010de0
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package cn.com.basic.face.discern.query.condition;
 
 
public class VisitorQueryCondition extends BaseCondition {
 
    public static final class FieldNames {
        /**
         * 公司主键
         */
        public static final String companyId = "companyId";
        /**
         * 人员名字
         */
        public static final String name = "name";
        /**
         * 人员主键
         */
        public static final String id = "id";
        /**
         * 
         */
        public static final String notCompanyId = "notCompanyId";
    }
 
    // 公司主键
    private String companyId;
    // 人员名字
    private String name;
    // 人员主键
    private String id;
    // 
    private String notCompanyId;
 
    /**
     * Get 公司主键
     */
    public String getCompanyId() {
        return companyId;
    }
 
    /**
     * Set 公司主键
     */
    public void setCompanyId(String companyId) {
        this.companyId = companyId;
    }
 
    /**
     * Get 人员名字
     */
    public String getName() {
        return name;
    }
 
    /**
     * Set 人员名字
     */
    public void setName(String name) {
        this.name = name;
    }
 
    /**
     * Get 人员主键
     */
    public String getId() {
        return id;
    }
 
    /**
     * Set 人员主键
     */
    public void setId(String id) {
        this.id = id;
    }
 
    /**
     * Get 
     */
    public String getNotCompanyId() {
        return notCompanyId;
    }
 
    /**
     * Set 
     */
    public void setNotCompanyId(String notCompanyId) {
        this.notCompanyId = notCompanyId;
    }
 
    public String toString() {
        return 
             ",公司主键 =" + companyId  +  ",人员名字 =" + name       +  ",人员主键 =" + id         + 
             ", ="     + notCompanyId;
    }
}