预约申请
This commit is contained in:
@@ -5,10 +5,9 @@ import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
@ApiModel(description = "面试预约")
|
||||
public class CreateAppointmentReq {
|
||||
@ApiModelProperty(value = "加盟商用户ID", required = true)
|
||||
@ApiModelProperty(value = "加盟商用户ID")
|
||||
private String partnerId;
|
||||
|
||||
@ApiModelProperty(value = "面试官id", required = true)
|
||||
@ApiModelProperty(value = "面试官id")
|
||||
private String interviewerId;
|
||||
|
||||
@ApiModelProperty(value = "预约开始时间 (YYYY-MM-DD hh:mm:ss)", required = true)
|
||||
@@ -16,7 +15,7 @@ public class CreateAppointmentReq {
|
||||
|
||||
@ApiModelProperty(value = "预约结束时间 (YYYY-MM-DD hh:mm:ss)", required = true)
|
||||
private String endBookingTime;
|
||||
@ApiModelProperty(value = "线索id", required = true)
|
||||
@ApiModelProperty(value = "线索id(如果面试官id,会根据加盟商id和线索id查询面试官)")
|
||||
private Long partnerLineId;
|
||||
|
||||
public String getPartnerId() {
|
||||
@@ -59,5 +58,4 @@ public class CreateAppointmentReq {
|
||||
this.endBookingTime = endBookingTime;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user