package com.doumee.keyCabinet.bean;
|
|
//人脸
|
public class FaceUserBean {
|
private String id;
|
private String name;
|
private String faceUrl;
|
//0:会员,1:学员
|
private String type;
|
private String editTime;
|
|
private boolean checked;
|
|
public FaceUserBean() {
|
|
}
|
|
public FaceUserBean(String id, String name, String type, String faceUrl) {
|
this.id = id;
|
this.name = name;
|
this.faceUrl = faceUrl;
|
this.type = type;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getFaceUrl() {
|
return faceUrl;
|
}
|
|
public void setFaceUrl(String faceUrl) {
|
this.faceUrl = faceUrl;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getEditTime() {
|
return editTime;
|
}
|
|
public void setEditTime(String editTime) {
|
this.editTime = editTime;
|
}
|
|
public boolean isChecked() {
|
return checked;
|
}
|
|
public void setChecked(boolean checked) {
|
this.checked = checked;
|
}
|
}
|