xuxiuxi
2017-03-20 37ab8b5ba208303f9f47454c053528f4e4fdf68c
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;
 
/**
 * VisitPersonType
 */
public class VisitPersonType extends BaseEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    public static final String MODEL_NAME = "VisitPersonType";
 
    public static final class FieldNames {
        /**
         * registerCompanyId
         */
        public static final String registerCompanyId = "registerCompanyId";
        /**
         * personId
         */
        public static final String personId = "personId";
        /**
         * visitorTypeId
         */
        public static final String visitorTypeId = "visitorTypeId";
    }
 
    // registerCompanyId
    private Integer registerCompanyId;
    // personId
    private Integer personId;
    // visitorTypeId
    private Integer visitorTypeId;
 
    /**
     * Get registerCompanyId
     */
    public Integer getRegisterCompanyId() {
        return registerCompanyId;
    }
 
    /**
     * Set registerCompanyId
     */
    public void setRegisterCompanyId(Integer registerCompanyId) {
        this.registerCompanyId = registerCompanyId;
    }
 
    /**
     * Get personId
     */
    public Integer getPersonId() {
        return personId;
    }
 
    /**
     * Set personId
     */
    public void setPersonId(Integer personId) {
        this.personId = personId;
    }
 
    /**
     * Get visitorTypeId
     */
    public Integer getVisitorTypeId() {
        return visitorTypeId;
    }
 
    /**
     * Set visitorTypeId
     */
    public void setVisitorTypeId(Integer visitorTypeId) {
        this.visitorTypeId = visitorTypeId;
    }
 
    public String toString() {
        return 
             ",registerCompanyId ="+ registerCompanyId +  ",personId ="+ personId   +  ",visitorTypeId ="+ visitorTypeId
            ;
    }
}