Merge remote-tracking branch 'origin/cc_20230520_partner' into cc_20230520_partner

This commit is contained in:
俞扬
2023-06-21 19:07:49 +08:00
3 changed files with 5 additions and 2 deletions

View File

@@ -24,4 +24,6 @@ public class InterviewDetailInfoVO {
private Long lineId;
@ApiModelProperty("面试开始时间")
private Date startTime;
private Long interviewPlanId;
}

View File

@@ -66,10 +66,10 @@ public class HyPartnerIntentInfoServiceImpl implements HyPartnerIntentInfoServic
PartnerIntentApplyInfoVO partnerIntentApplyInfoVO = new PartnerIntentApplyInfoVO();
String workflowStatus = "";
if (CommonConstants.PENDING.equals(type)) {
workflowStatus = WorkflowStatusEnum.RESERVATION_0.getCode();
workflowStatus = WorkflowStatusEnum.INTENT_1.getCode();
}
if (CommonConstants.FOLLOW.equals(type)) {
workflowStatus = WorkflowStatusEnum.INTERVIEW_5.getCode();
workflowStatus = WorkflowStatusEnum.INTENT_0.getCode();
}
PageHelper.startPage(pageNumber,pageSize);
PageInfo partnerIntentApplyInfo = new PageInfo(hyPartnerIntentInfoDAO.selectPartnerIntentApplyInfoList(userId, WorkflowStageEnum.INTENT.getCode(), workflowStatus));

View File

@@ -150,6 +150,7 @@ public class HyPartnerInterviewPlanServiceImpl implements HyPartnerInterviewPlan
}
interviewDetailInfoVO.setLineId(hyPartnerInterviewPlanDO.getPartnerLineId());
interviewDetailInfoVO.setStartTime(hyPartnerInterviewPlanDO.getStartTime());
interviewDetailInfoVO.setInterviewPlanId(hyPartnerInterviewPlanDO.getId());
return interviewDetailInfoVO;
}