AI助手和Nova助手

This commit is contained in:
2026-05-06 15:07:44 +08:00
parent 1c91818494
commit f341408254
38 changed files with 4759 additions and 657 deletions
+10
View File
@@ -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
/** 获奖情况 */