82 lines
1.5 KiB
Java
82 lines
1.5 KiB
Java
package com.mini.capi.biz.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.time.LocalDate;
|
|
import java.time.LocalDateTime;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* <p>
|
|
* 教育经历子表
|
|
* </p>
|
|
*
|
|
* @author gaoxq
|
|
* @since 2025-08-25
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@TableName("biz_resume_education")
|
|
public class ResumeEducation implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableField("create_time")
|
|
private LocalDateTime createTime;
|
|
|
|
/**
|
|
* 主键
|
|
*/
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private String id;
|
|
|
|
/**
|
|
* 外键
|
|
*/
|
|
@TableField("employee_id")
|
|
private String employeeId;
|
|
|
|
/**
|
|
* 学校名称
|
|
*/
|
|
@TableField("school")
|
|
private String school;
|
|
|
|
/**
|
|
* 专业
|
|
*/
|
|
@TableField("major")
|
|
private String major;
|
|
|
|
/**
|
|
* 学历:高中,专科,本科,硕士,博士,其他
|
|
*/
|
|
@TableField("education_degree")
|
|
private String educationDegree;
|
|
|
|
/**
|
|
* 开始日期
|
|
*/
|
|
@TableField("start_date")
|
|
private LocalDate startDate;
|
|
|
|
/**
|
|
* 结束日期
|
|
*/
|
|
@TableField("end_date")
|
|
private LocalDate endDate;
|
|
|
|
@TableField("update_time")
|
|
private LocalDateTime updateTime;
|
|
|
|
/**
|
|
* 租户id
|
|
*/
|
|
@TableField("f_tenant_id")
|
|
private String fTenantId;
|
|
}
|