小程序端预约时间列表修改

This commit is contained in:
feng.li
2023-11-10 16:08:02 +08:00
parent 081c0944b2
commit fcd0b44f34
5 changed files with 45 additions and 5 deletions

View File

@@ -16,12 +16,12 @@ public class GetFreeBusyListReq {
private String startDate;
@ApiModelProperty(value = "结束时间",required = true)
private String endDate;
@ApiModelProperty("线索id(C端使用)")
@ApiModelProperty(value = "线索id", required = true)
private String lineId;
@ApiModelProperty("加盟商用户IDC端使用与面试官id两个字段中必传一个,该字段传值时线索id必传")
@ApiModelProperty(value = "加盟商用户ID", required = true)
private String partnerId;
@ApiModelProperty("面试官ID(B端使用,如果该字段传了,就查询该面试官的日程忙闲信息,否则查询加盟商对应的面试官的信息)")
@ApiModelProperty(value = "面试官ID", required = false)
private String interviewerId;
@ApiModelProperty("是否是PC端请求")
@ApiModelProperty(value = "是否是PC端请求", required = true)
private Boolean whetherPC;
}