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 java.io.Serializable; import java.util.Date; @TableName("examscore") public class ExamScoreInfo 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; /** 考试类型 examtype **/ private String examtype; /** 分数 score **/ private Integer score; /** 有效期结束时间 starttime **/ private Date starttime; /** 有效期结束时间 endtime **/ private Date endtime; /** 创建时间 createtime **/ private Date createtime; /** 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(); } /** 考试类型 examtype **/ public String getExamtype() { return examtype; } /** 考试类型 examtype **/ public void setExamtype(String examtype) { this.examtype = examtype == null ? null : examtype.trim(); } /** 分数 score **/ public Integer getScore() { return score; } /** 分数 score **/ public void setScore(Integer score) { this.score = score; } /** 有效期结束时间 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; } /** 创建时间 createtime **/ public Date getCreatetime() { return createtime; } /** 创建时间 createtime **/ public void setCreatetime(Date createtime) { this.createtime = createtime; } }