面试管理获取面试列表interviewId->interviewPlanId

This commit is contained in:
pserimal
2023-06-19 12:02:50 +08:00
parent 3bf26f70e8
commit 3c7ba3ce49
3 changed files with 8 additions and 1 deletions

View File

@@ -246,7 +246,7 @@
</select> </select>
<select id="getInterviewList" resultType="com.cool.store.vo.interview.InterviewVO"> <select id="getInterviewList" resultType="com.cool.store.vo.interview.InterviewVO">
select hpip.id as interviewId, select hpip.id as interviewPlanId,
hpui.username as partnerName, hpui.username as partnerName,
hpui.mobile as partnerMobile, hpui.mobile as partnerMobile,
hpip.room_id as roomId, hpip.room_id as roomId,

View File

@@ -29,4 +29,11 @@ public class FlowController {
flowService.createQualifyVerify(request); flowService.createQualifyVerify(request);
return ResponseResult.success(); return ResponseResult.success();
} }
@PostMapping("/qualificationReview/callback")
@ApiOperation("流程信息回调接口")
public ResponseResult qualificationCallback() {
return null;
}
} }