package com.gk.hotwork.Domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("workcert")
|
public class WorkCertInfo implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 姓名 realname **/
|
private String realname;
|
|
/** 手机号 mobile **/
|
private String mobile;
|
|
/** 身份证 idcard **/
|
private String idcard;
|
|
/** 文件名 certname **/
|
private String certname;
|
|
/** 文件路径 certpath **/
|
private String certpath;
|
|
private String branch;
|
|
/** 是否健康证 ishealth **/
|
private Byte ishealth;
|
|
/** 有效期开始时间 starttime **/
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
private Date starttime;
|
|
/** 有效期结束时间 endtime **/
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
private Date endtime;
|
|
/** 创建人 createby **/
|
private String createby;
|
|
/** 创建时间 createtime **/
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
private Date createtime;
|
|
/** 是否删除 isdel **/
|
private Byte isdel;
|
|
/** id id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** id id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 姓名 realname **/
|
public String getRealname() {
|
return realname;
|
}
|
|
/** 姓名 realname **/
|
public void setRealname(String realname) {
|
this.realname = realname == null ? null : realname.trim();
|
}
|
|
/** 手机号 mobile **/
|
public String getMobile() {
|
return mobile;
|
}
|
|
/** 手机号 mobile **/
|
public void setMobile(String mobile) {
|
this.mobile = mobile == null ? null : mobile.trim();
|
}
|
|
/** 身份证 idcard **/
|
public String getIdcard() {
|
return idcard;
|
}
|
|
/** 身份证 idcard **/
|
public void setIdcard(String idcard) {
|
this.idcard = idcard == null ? null : idcard.trim();
|
}
|
|
/** 文件名 certname **/
|
public String getCertname() {
|
return certname;
|
}
|
|
/** 文件名 certname **/
|
public void setCertname(String certname) {
|
this.certname = certname == null ? null : certname.trim();
|
}
|
|
/** 文件路径 certpath **/
|
public String getCertpath() {
|
return certpath;
|
}
|
|
/** 文件路径 certpath **/
|
public void setCertpath(String certpath) {
|
this.certpath = certpath == null ? null : certpath.trim();
|
}
|
|
/** 有效期开始时间 starttime **/
|
public Date getStarttime() {
|
return starttime;
|
}
|
|
/** 有效期开始时间 starttime **/
|
public void setStarttime(Date starttime) {
|
this.starttime = starttime;
|
}
|
|
/** 有效期结束时间 endtime **/
|
public Date getEndtime() {
|
return endtime;
|
}
|
|
/** 有效期结束时间 endtime **/
|
public void setEndtime(Date endtime) {
|
this.endtime = endtime;
|
}
|
|
/** 创建人 createby **/
|
public String getCreateby() {
|
return createby;
|
}
|
|
/** 创建人 createby **/
|
public void setCreateby(String createby) {
|
this.createby = createby == null ? null : createby.trim();
|
}
|
|
/** 创建时间 createtime **/
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
/** 创建时间 createtime **/
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
/** 是否删除 isdel **/
|
public Byte getIsdel() {
|
return isdel;
|
}
|
|
/** 是否删除 isdel **/
|
public void setIsdel(Byte isdel) {
|
this.isdel = isdel;
|
}
|
|
public String getBranch() {
|
return branch;
|
}
|
|
public void setBranch(String branch) {
|
this.branch = branch;
|
}
|
|
public Byte getIshealth() {
|
return ishealth;
|
}
|
|
public void setIshealth(Byte ishealth) {
|
this.ishealth = ishealth;
|
}
|
}
|