package cn.com.basic.face.discern.baseApi.entity.sys;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class UserCredentials implements Serializable {
|
/**
|
* 用户ID
|
*/
|
private String userid;
|
|
/**
|
* 证件类型
|
*/
|
private String credentialstype;
|
|
/**
|
* 证件编号
|
*/
|
private String credentialsnumber;
|
|
/**
|
* 证件图片地址
|
*/
|
private String credentialspath;
|
|
/**
|
* 数据状态:1有效,0无效
|
*/
|
private Byte datastatus;
|
|
/**
|
* 创建该记录时间
|
*/
|
private Date createtime;
|
|
/**
|
* 数据创建人
|
*/
|
private String creator;
|
|
/**
|
* 更新时间
|
*/
|
private Date updatetime;
|
|
/**
|
* 数据更新人
|
*/
|
private String updator;
|
|
private static final long serialVersionUID = 1L;
|
|
public String getUserid() {
|
return userid;
|
}
|
|
public void setUserid(String userid) {
|
this.userid = userid == null ? null : userid.trim();
|
}
|
|
public String getCredentialstype() {
|
return credentialstype;
|
}
|
|
public void setCredentialstype(String credentialstype) {
|
this.credentialstype = credentialstype == null ? null : credentialstype.trim();
|
}
|
|
public String getCredentialsnumber() {
|
return credentialsnumber;
|
}
|
|
public void setCredentialsnumber(String credentialsnumber) {
|
this.credentialsnumber = credentialsnumber == null ? null : credentialsnumber.trim();
|
}
|
|
public String getCredentialspath() {
|
return credentialspath;
|
}
|
|
public void setCredentialspath(String credentialspath) {
|
this.credentialspath = credentialspath == null ? null : credentialspath.trim();
|
}
|
|
public Byte getDatastatus() {
|
return datastatus;
|
}
|
|
public void setDatastatus(Byte datastatus) {
|
this.datastatus = datastatus;
|
}
|
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator == null ? null : creator.trim();
|
}
|
|
public Date getUpdatetime() {
|
return updatetime;
|
}
|
|
public void setUpdatetime(Date updatetime) {
|
this.updatetime = updatetime;
|
}
|
|
public String getUpdator() {
|
return updator;
|
}
|
|
public void setUpdator(String updator) {
|
this.updator = updator == null ? null : updator.trim();
|
}
|
|
@Override
|
public String toString() {
|
StringBuilder sb = new StringBuilder();
|
sb.append(getClass().getSimpleName());
|
sb.append(" [");
|
sb.append("Hash = ").append(hashCode());
|
sb.append(", userid=").append(userid);
|
sb.append(", credentialstype=").append(credentialstype);
|
sb.append(", credentialsnumber=").append(credentialsnumber);
|
sb.append(", credentialspath=").append(credentialspath);
|
sb.append(", datastatus=").append(datastatus);
|
sb.append(", createtime=").append(createtime);
|
sb.append(", creator=").append(creator);
|
sb.append(", updatetime=").append(updatetime);
|
sb.append(", updator=").append(updator);
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
sb.append("]");
|
return sb.toString();
|
}
|
}
|