dupengyue
2017-03-06 8fde2958bdc6f79c7c04c497c4c4fa246fe20d96
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
package cn.com.basic.face.discern.user.entity;
 
public class Image {
    private Integer personid;
 
    private String imagetye;
 
    private String imagepath;
 
    public Integer getPersonid() {
        return personid;
    }
 
    public void setPersonid(Integer personid) {
        this.personid = personid;
    }
 
    public String getImagetye() {
        return imagetye;
    }
 
    public void setImagetye(String imagetye) {
        this.imagetye = imagetye == null ? null : imagetye.trim();
    }
 
    public String getImagepath() {
        return imagepath;
    }
 
    public void setImagepath(String imagepath) {
        this.imagepath = imagepath == null ? null : imagepath.trim();
    }
}