Ai-interviewer-system/src/main/java/com/yzdx/AiInterviewer/entity/InterviewNotice.java

21 lines
577 B
Java

package com.yzdx.AiInterviewer.entity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel("面试通知实体类")
public class InterviewNotice extends BaseEntity{
@ApiModelProperty("面试通知id")
private Integer id;
@ApiModelProperty("公司编码")
private String companyEncoding;
@ApiModelProperty("通知内容")
private String detail;
@ApiModelProperty("注意事项")
private String attention;
@ApiModelProperty("收件人")
private String recipient;
}