面试相关修改
This commit is contained in:
@@ -65,4 +65,10 @@ public class HyPartnerInterviewPlanDO implements Serializable {
|
||||
|
||||
@ApiModelProperty("更新时间")
|
||||
private Date updateTime;
|
||||
|
||||
@ApiModelProperty("飞书日历id")
|
||||
private String feishuCalendarId;
|
||||
|
||||
@ApiModelProperty("飞书日程id")
|
||||
private String feishuScheduleId;
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @Author: young.yu
|
||||
* @Date: 2023-06-18 19:54
|
||||
* @Description:
|
||||
*/
|
||||
@ApiModel(description = "同意面试预约")
|
||||
public class ApproveAppointmentReq {
|
||||
|
||||
@ApiModelProperty(value = "面试安排ID", required = true)
|
||||
private String interviewPlanId;
|
||||
@ApiModelProperty(value = "面试官ID", required = true)
|
||||
private String interviewerId;
|
||||
|
||||
public String getInterviewPlanId() {
|
||||
return interviewPlanId;
|
||||
}
|
||||
|
||||
public void setInterviewPlanId(String interviewPlanId) {
|
||||
this.interviewPlanId = interviewPlanId;
|
||||
}
|
||||
|
||||
public String getInterviewerId() {
|
||||
return interviewerId;
|
||||
}
|
||||
|
||||
public void setInterviewerId(String interviewerId) {
|
||||
this.interviewerId = interviewerId;
|
||||
}
|
||||
}
|
||||
@@ -13,7 +13,7 @@ import lombok.Data;
|
||||
@ApiModel
|
||||
public class EntrustOthersReq {
|
||||
@ApiModelProperty("会议编号")
|
||||
private String interviewId;
|
||||
private String interviewPlanId;
|
||||
|
||||
@ApiModelProperty("新面试官编号")
|
||||
private String newInterviewerId;
|
||||
|
||||
@@ -12,8 +12,8 @@ import lombok.Data;
|
||||
@Data
|
||||
@ApiModel
|
||||
public class ModifyInterviewTimeReq {
|
||||
@ApiModelProperty("会议编号")
|
||||
private String interviewId;
|
||||
@ApiModelProperty("会议安排编号")
|
||||
private String interviewPlanId;
|
||||
@ApiModelProperty("新预约开始时间")
|
||||
private String newStartBookingTime;
|
||||
@ApiModelProperty("新预约结束时间")
|
||||
|
||||
@@ -11,7 +11,7 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
@ApiModel
|
||||
public class QueryByInterviewIdReq {
|
||||
public class QueryByInterviewPlanIdReq {
|
||||
@ApiModelProperty("会议编号")
|
||||
private String interviewId;
|
||||
private String interviewPlanId;
|
||||
}
|
||||
@@ -12,6 +12,10 @@ import lombok.Data;
|
||||
@Data
|
||||
@ApiModel(description = "面试信息")
|
||||
public class InterviewVO {
|
||||
|
||||
@ApiModelProperty(value = "面试计划id", required = true)
|
||||
private String interviewPlanId;
|
||||
|
||||
@ApiModelProperty(value = "会议id", required = true)
|
||||
private String interviewId;
|
||||
|
||||
@@ -87,4 +91,10 @@ public class InterviewVO {
|
||||
@ApiModelProperty("通过函图片文件URL")
|
||||
private String passImageUrl;
|
||||
|
||||
@ApiModelProperty("飞书日历id")
|
||||
private String feishuCalendarId;
|
||||
|
||||
@ApiModelProperty("飞书日程id")
|
||||
private String feishuScheduleId;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user