11 lines
281 B
Python
11 lines
281 B
Python
from pydantic import BaseModel
|
|
from typing import List
|
|
|
|
|
|
class Feedback(BaseModel):
|
|
survey: dict # 存储的面试反馈
|
|
uid: str # 求职者唯一id
|
|
relevancy_id:str
|
|
# survey数据
|
|
# {'voice':1,'thought':1,'diathesis':1,'evaluate':'评价','teacher_back':1}
|