package cn.com.basic.face.discern.user.entity;
|
|
import java.io.Serializable;
|
|
public class VisitFace implements Serializable{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private Integer id;
|
|
private Integer personid;
|
|
private String imagepath;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getPersonid() {
|
return personid;
|
}
|
|
public void setPersonid(Integer personid) {
|
this.personid = personid;
|
}
|
|
public String getImagepath() {
|
return imagepath;
|
}
|
|
public void setImagepath(String imagepath) {
|
this.imagepath = imagepath == null ? null : imagepath.trim();
|
}
|
}
|