候选人AI面试分析

This commit is contained in:
2026-01-19 22:28:47 +08:00
parent 62de85c6e0
commit 2f76084d98
18 changed files with 410 additions and 16 deletions

View File

@@ -5,13 +5,13 @@ package com.vetti.common.enums;
*/
public enum StageEnum {
APPLIED("Applied", "已申请"),
SHORTLISTED("Shortlisted", "入围"),
INTERVIEW("Interview", "面试"),
OFFER("Offer", "邀约"),
HIRED("Hired", "受雇"),
APPLIED("applied", "已申请"),
SHORTLISTED("shortlisted", "入围"),
INTERVIEW("interview", "面试"),
OFFER("offer", "邀约"),
HIRED("hired", "受雇"),
REFUSE_OFFER("refuseOffer", "拒绝邀约"),
INTERVIEW_FAIL("InterviewFail", "面试失败"),
INTERVIEW_FAIL("interviewFail", "面试失败"),
;