- 新增 RzInterviewerDetail 类用于存储面试登记表详细信息 - 在 RzInterviewer 中添加表单数据字段 - 实现面试登记表信息的导入和导出功能 - 优化面试信息的添加和更新逻辑
70 lines
1.5 KiB
Java
70 lines
1.5 KiB
Java
package com.evo.personnelMatters.domain;
|
|
|
|
import com.evo.common.annotation.Excel;
|
|
import com.evo.common.core.domain.BaseEntity;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 面试信息对象 rz_interviewer
|
|
*
|
|
* @author chenyj
|
|
* @date 2024-09-07
|
|
*/
|
|
@Data
|
|
public class RzInterviewer extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 主键 */
|
|
private Long id;
|
|
|
|
/** 姓名 */
|
|
@Excel(name = "姓名")
|
|
private String name;
|
|
|
|
/** 联系方式 */
|
|
@Excel(name = "联系方式")
|
|
private String phone;
|
|
|
|
/** 面试岗位 */
|
|
@Excel(name = "面试岗位")
|
|
private String post;
|
|
|
|
/** 具备技能 */
|
|
@Excel(name = "具备技能")
|
|
private String content;
|
|
|
|
/** 家庭住址 */
|
|
@Excel(name = "家庭住址")
|
|
private String address;
|
|
|
|
/** 面试时间 */
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@Excel(name = "面试时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
private Date interviewDate;
|
|
|
|
/** 是否录用 */
|
|
@Excel(name = "是否录用")
|
|
private String ytFlag;
|
|
|
|
/** 备注 */
|
|
@Excel(name = "备注")
|
|
private String remarks;
|
|
/** 提交时间 */
|
|
@Excel(name = "提交时间")
|
|
private String submitTime;
|
|
|
|
/** 表单数据 */
|
|
@Excel(name = "表单数据")
|
|
private String fromData;
|
|
|
|
/** 删除标记 */
|
|
private String delFlag;
|
|
|
|
}
|