会议记录和面试记录的逻辑初始化
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package com.vetti.hotake.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.vetti.common.annotation.Excel;
|
||||
import com.vetti.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 面试信息明细对象 hotake_interview_detail
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-09
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class HotakeInterviewDetail extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键ID */
|
||||
@ApiModelProperty("主键ID")
|
||||
private Long id;
|
||||
|
||||
/** 面试ID */
|
||||
@ApiModelProperty("面试ID")
|
||||
@Excel(name = "面试ID")
|
||||
private Long interviewId;
|
||||
|
||||
/** 面试官名称 */
|
||||
@ApiModelProperty("面试官名称")
|
||||
@Excel(name = "面试官名称")
|
||||
private String interviewerName;
|
||||
|
||||
/** 面试内容 */
|
||||
@ApiModelProperty("面试内容")
|
||||
@Excel(name = "面试内容")
|
||||
private String content;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user