邀请面试业务逻辑完善
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user