xuxiuxi
2017-03-31 03f65ab5ad75eae6a438a65bcd66ce25a7551d1a
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
package cn.com.basic.face.discern.entity;
 
import java.io.Serializable;
 
import cn.com.basic.face.discern.common.BaseEntity;
 
/**
 * VisitStat
 */
public class VisitStat extends BaseEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    public static final String MODEL_NAME = "VisitStat";
 
    public static final class FieldNames {
        /**
         * 人员主键
         */
        public static final String personId = "personId";
        /**
         * 注册公司主键
         */
        public static final String registerCompanyId = "registerCompanyId";
        /**
         * 来访公司次数
         */
        public static final String totalCount = "totalCount";
    }
 
    // 人员主键
    private String personId;
    // 注册公司主键
    private String registerCompanyId;
    // 来访公司次数
    private String totalCount;
 
    /**
     * Get 人员主键
     */
    public String getPersonId() {
        return personId;
    }
 
    /**
     * Set 人员主键
     */
    public void setPersonId(String personId) {
        this.personId = personId;
    }
 
    /**
     * Get 注册公司主键
     */
    public String getRegisterCompanyId() {
        return registerCompanyId;
    }
 
    /**
     * Set 注册公司主键
     */
    public void setRegisterCompanyId(String registerCompanyId) {
        this.registerCompanyId = registerCompanyId;
    }
 
    /**
     * Get 来访公司次数
     */
    public String getTotalCount() {
        return totalCount;
    }
 
    /**
     * Set 来访公司次数
     */
    public void setTotalCount(String totalCount) {
        this.totalCount = totalCount;
    }
 
    public String toString() {
        return 
             ",人员主键 =" + personId   +  ",注册公司主键 ="+ registerCompanyId +  ",来访公司次数 ="+ totalCount
            ;
    }
}