邀请面试业务逻辑完善

This commit is contained in:
2025-12-18 23:40:06 +08:00
parent efc6c6e5a9
commit d89be3848a
12 changed files with 307 additions and 53 deletions

View File

@@ -25,10 +25,13 @@ public class HotakeMeetingCalendarInfo extends BaseEntity
@ApiModelProperty("主键ID")
private Long id;
/** 用户ID */
@ApiModelProperty("用户ID")
@Excel(name = "用户ID")
private Long userId;
/** 招聘人ID */
@ApiModelProperty("招聘人ID")
@Excel(name = "招聘人ID")
private Long recruiterId;
@ApiModelProperty("岗位申请ID")
private Long roleApplyId;
/** 公司名称 */
@ApiModelProperty("公司名称")
@@ -50,11 +53,18 @@ public class HotakeMeetingCalendarInfo extends BaseEntity
@Excel(name = "会议时间")
private String times;
/** 发送消息方式(逗号分隔) */
@ApiModelProperty("发送消息方式(逗号分隔)")
@Excel(name = "发送消息方式(逗号分隔)")
private String messageVia;
/** 状态0 取消1 正常) */
@ApiModelProperty("状态0 取消1 正常)")
@Excel(name = "状态", readConverterExp = "0=,取=消1,正=常")
private String status;
@ApiModelProperty("岗位基本信息")
private HotakeRolesInfo rolesInfo;
@ApiModelProperty("参会人员")
private List<HotakeMeetingCalendarDetail> calendarDetails;