面试相关修改

This commit is contained in:
俞扬
2023-06-19 16:26:08 +08:00
parent 8cc163a3c0
commit 9280a01167
3 changed files with 9 additions and 0 deletions

View File

@@ -15,12 +15,18 @@ public class CreateQualifyVerifyReq {
@ApiModelProperty(value = "线索id", required = true)
private String lineId;
@ApiModelProperty(value = "会议安排id", required = true)
private String interviewPlanId;
@ApiModelProperty(value = "会议id", required = true)
private String interviewId;
@ApiModelProperty(value = "加盟商id", required = true)
private String partnerId;
@ApiModelProperty(value = "开发主管用户id", required = true)
private String devtDirectorId;
@ApiModelProperty(value = "面试表现记录", required = true)
private String summary;

View File

@@ -100,6 +100,7 @@ public class FeiShuServiceImpl implements FeiShuService {
if (( userFreeBusyInfoDTO.getStartTime()>startTimeLong && userFreeBusyInfoDTO.getStartTime() < endTimeLong)
|| (userFreeBusyInfoDTO.getEndTime() > startTimeLong && userFreeBusyInfoDTO.getEndTime() < endTimeLong)) {
freeBusyInfo.setFree(false);
break;
}
}

View File

@@ -5,6 +5,7 @@ import com.cool.store.request.CreateQualifyVerifyReq;
import com.cool.store.request.FinishInterviewReq;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.FlowService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
@@ -17,6 +18,7 @@ import org.springframework.web.bind.annotation.RestController;
* @Date: 2023-06-14 13:47
* @Description: 流程相关
*/
@Api(tags = "流程相关接口")
@RestController
@RequestMapping({"/flow"})
public class FlowController {