AI助手和Nova助手
This commit is contained in:
@@ -773,6 +773,8 @@ import RegionSelector from '@/components/tools/RegionSelector.vue'
|
||||
|
||||
/** 教育经历单条数据结构 — 对应数据库 bg_user_profile_education */
|
||||
interface EducationItem {
|
||||
/** 记录ID(已有经历从后端获取,新增经历无此字段) */
|
||||
id?: string
|
||||
/** 学校名称 */
|
||||
school: string
|
||||
/** 专业 */
|
||||
@@ -791,6 +793,8 @@ interface EducationItem {
|
||||
|
||||
/** 实习经历单条数据结构 — 对应数据库 bg_user_profile_internship */
|
||||
interface InternshipItem {
|
||||
/** 记录ID(已有经历从后端获取,新增经历无此字段) */
|
||||
id?: string
|
||||
/** 公司名称 */
|
||||
companyName: string
|
||||
/** 职位 */
|
||||
@@ -805,6 +809,8 @@ interface InternshipItem {
|
||||
|
||||
/** 工作经历单条数据结构 — 对应数据库 bg_user_profile_work */
|
||||
interface WorkItem {
|
||||
/** 记录ID(已有经历从后端获取,新增经历无此字段) */
|
||||
id?: string
|
||||
/** 公司名称 */
|
||||
companyName: string
|
||||
/** 职位 */
|
||||
@@ -827,6 +833,8 @@ interface DescriptionParagraph {
|
||||
|
||||
/** 项目经历单条数据结构 — 对应数据库 bg_user_profile_project */
|
||||
interface ProjectItem {
|
||||
/** 记录ID(已有经历从后端获取,新增经历无此字段) */
|
||||
id?: string
|
||||
/** 项目名称 */
|
||||
projectName: string
|
||||
/** 所属公司 */
|
||||
@@ -843,6 +851,8 @@ interface ProjectItem {
|
||||
|
||||
/** 竞赛经历单条数据结构 — 对应数据库 bg_user_profile_competition */
|
||||
interface CompetitionItem {
|
||||
/** 记录ID(已有经历从后端获取,新增经历无此字段) */
|
||||
id?: string
|
||||
/** 竞赛名称 */
|
||||
competitionName: string
|
||||
/** 获奖情况 */
|
||||
|
||||
Reference in New Issue
Block a user