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;
 
/**
 * Image
 */
public class Image extends BaseEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    public static final String MODEL_NAME = "Image";
 
    public static final class FieldNames {
        /**
         * 人员主键
         */
        public static final String personId = "personId";
        /**
         * 图片类型
         */
        public static final String imageType = "imageType";
        /**
         * 图片地址
         */
        public static final String imagePath = "imagePath";
    }
 
    // 人员主键
    private Integer personId;
    // 图片类型
    private Integer imageType;
    // 图片地址
    private String imagePath;
 
    /**
     * Get 人员主键
     */
    public Integer getPersonId() {
        return personId;
    }
 
    /**
     * Set 人员主键
     */
    public void setPersonId(Integer personId) {
        this.personId = personId;
    }
 
    /**
     * Get 图片类型
     */
    public Integer getImageType() {
        return imageType;
    }
 
    /**
     * Set 图片类型
     */
    public void setImageType(Integer imageType) {
        this.imageType = imageType;
    }
 
    /**
     * Get 图片地址
     */
    public String getImagePath() {
        return imagePath;
    }
 
    /**
     * Set 图片地址
     */
    public void setImagePath(String imagePath) {
        this.imagePath = imagePath;
    }
 
    public String toString() {
        return 
             ",人员主键 =" + personId   +  ",图片类型 =" + imageType  +  ",图片地址 =" + imagePath 
            ;
    }
}