package cn.com.basic.face.discern.baseApi.entity.checking;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class Checking implements Serializable {
|
/**
|
* 考勤ID
|
*/
|
private String checkingid;
|
|
/**
|
* 考勤类型
|
*/
|
private String checkingtype;
|
|
/**
|
* 考勤地点ID
|
*/
|
private String checkingposition;
|
|
/**
|
* 考勤时间
|
*/
|
private Date checkingtime;
|
|
/**
|
* 用户ID
|
*/
|
private String userid;
|
|
/**
|
* 考勤公司ID
|
*/
|
private String companyid;
|
|
/**
|
* 数据状态: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 getCheckingid() {
|
return checkingid;
|
}
|
|
public void setCheckingid(String checkingid) {
|
this.checkingid = checkingid == null ? null : checkingid.trim();
|
}
|
|
public String getCheckingtype() {
|
return checkingtype;
|
}
|
|
public void setCheckingtype(String checkingtype) {
|
this.checkingtype = checkingtype == null ? null : checkingtype.trim();
|
}
|
|
public String getCheckingposition() {
|
return checkingposition;
|
}
|
|
public void setCheckingposition(String checkingposition) {
|
this.checkingposition = checkingposition == null ? null : checkingposition.trim();
|
}
|
|
public Date getCheckingtime() {
|
return checkingtime;
|
}
|
|
public void setCheckingtime(Date checkingtime) {
|
this.checkingtime = checkingtime;
|
}
|
|
public String getUserid() {
|
return userid;
|
}
|
|
public void setUserid(String userid) {
|
this.userid = userid == null ? null : userid.trim();
|
}
|
|
public String getCompanyid() {
|
return companyid;
|
}
|
|
public void setCompanyid(String companyid) {
|
this.companyid = companyid == null ? null : companyid.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(", checkingid=").append(checkingid);
|
sb.append(", checkingtype=").append(checkingtype);
|
sb.append(", checkingposition=").append(checkingposition);
|
sb.append(", checkingtime=").append(checkingtime);
|
sb.append(", userid=").append(userid);
|
sb.append(", companyid=").append(companyid);
|
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();
|
}
|
}
|