diff --git a/api/api_v1/endpoints/interview.py b/api/api_v1/endpoints/interview.py index 48df447..83cd5d2 100644 --- a/api/api_v1/endpoints/interview.py +++ b/api/api_v1/endpoints/interview.py @@ -61,7 +61,7 @@ def chkData(data): res1['owner_name'] = owner_name_dict.get(key6, '人才库') if 'education' in res1: key7 = res1['education'] - res1['education'] = interview_stage_dict.get(key7, '大专') + res1['education'] = education_dict.get(key7, '大专') if 'mmended_state' in res1: key8 = res1['mmended_state'] res1['mmended_state'] = mmended_state_dict.get(key8, '未推荐')