工作台预约面试待审核的增加对应时段预约情况信息

This commit is contained in:
feng.li
2023-11-09 14:43:56 +08:00
parent bc986590e9
commit 80f0f5b6d2
4 changed files with 37 additions and 2 deletions

View File

@@ -30,4 +30,11 @@ public class HyPartnerInterviewBookSituation {
@ApiModelProperty("是否已被预定")
private Boolean booked;
@ApiModelProperty("预约成功人的 partnerId")
private String bookedPartnerId;
public HyPartnerInterviewBookSituation(Integer bookingCount, Boolean booked) {
this.bookingCount = bookingCount;
this.booked = booked;
}
}

View File

@@ -84,4 +84,11 @@ public class PartnerInterviewInfoVO {
@ApiModelProperty("来源名称")
private String userChannelName;
@ApiModelProperty("是否已被预约")
private Boolean booked;
@ApiModelProperty("该时间段面试预约人数")
private Integer appointmentCount;
}