添加个人信息表
This commit is contained in:
@@ -76,6 +76,13 @@ offerpie/back-end
|
||||
│ ├─ UserJobFavoriteMapper.java # 用户收藏岗位Mapper
|
||||
│ ├─ UserJobApplicationMapper.java # 用户投递记录Mapper
|
||||
│ ├─ UserJobDislikeMapper.java # 用户不感兴趣记录Mapper
|
||||
│ ├─ UserJobIntentionMapper.java # 用户求职意向Mapper
|
||||
│ ├─ UserProfileMapper.java # 用户个人资料Mapper
|
||||
│ ├─ UserProfileEducationMapper.java # 用户教育经历Mapper
|
||||
│ ├─ UserProfileWorkMapper.java # 用户工作经历Mapper
|
||||
│ ├─ UserProfileInternshipMapper.java # 用户实习经历Mapper
|
||||
│ ├─ UserProfileProjectMapper.java # 用户项目经历Mapper
|
||||
│ ├─ UserProfileCompetitionMapper.java # 用户竞赛经历Mapper
|
||||
│ └─ AppJobDataMapper.java # 爬虫岗位原始数据Mapper
|
||||
├─ pojo/
|
||||
│ ├─ po/ # 持久化实体
|
||||
@@ -98,6 +105,13 @@ offerpie/back-end
|
||||
│ │ ├─ UserJobFavorite.java # 用户收藏岗位表(bg_user_job_favorite)
|
||||
│ │ ├─ UserJobApplication.java # 用户投递记录表(bg_user_job_application)
|
||||
│ │ ├─ UserJobDislike.java # 用户不感兴趣记录表(bg_user_job_dislike)
|
||||
│ │ ├─ UserJobIntention.java # 用户求职意向表(bg_user_job_intention)
|
||||
│ │ ├─ UserProfile.java # 用户个人资料表(bg_user_profile)
|
||||
│ │ ├─ UserProfileEducation.java # 用户教育经历表(bg_user_profile_education)
|
||||
│ │ ├─ UserProfileWork.java # 用户工作经历表(bg_user_profile_work)
|
||||
│ │ ├─ UserProfileInternship.java # 用户实习经历表(bg_user_profile_internship)
|
||||
│ │ ├─ UserProfileProject.java # 用户项目经历表(bg_user_profile_project)
|
||||
│ │ ├─ UserProfileCompetition.java # 用户竞赛经历表(bg_user_profile_competition)
|
||||
│ │ └─ AppJobData.java # 爬虫岗位原始数据表(app_job_data)
|
||||
│ └─ vo/ # ViewObject(OssUrlVo 等)
|
||||
└─ service/ # 业务 Service(OssService、SmsService、DictCacheService、JobCleanService、JobCleanTransactionService、CompanyCleanService、CompanyCleanTransactionService 等)
|
||||
@@ -135,6 +149,13 @@ offerpie/back-end
|
||||
| `Industry` | manager | 行业字典表(bg_industry),树形结构,一级/二级分类。 |
|
||||
| `SkillTag` | manager | 技能标签表(bg_skill_tag),挂在岗位类型下,不分级,用于匹配度计算。 |
|
||||
| `UserJobDislike` | manager | 用户不感兴趣记录表(bg_user_job_dislike),记录用户对岗位的不感兴趣原因,冗余公司ID/地区编码/行业ID方便推荐过滤。 |
|
||||
| `UserJobIntention` | manager | 用户求职意向表(bg_user_job_intention),存储意向岗位类型、城市、行业(JSON数组,节点可能为任意级别)和工作类型。 |
|
||||
| `UserProfile` | manager | 用户个人资料表(bg_user_profile),存储身份证号、所在城市、微信号、作品集链接、工作年限、经验行业IDs、技能标签、证书标签。 |
|
||||
| `UserProfileEducation` | manager | 用户教育经历表(bg_user_profile_education,profile子表),学校、专业、学历、起止年份、描述段落(JSON对象数组)。 |
|
||||
| `UserProfileWork` | manager | 用户工作经历表(bg_user_profile_work,profile子表),公司、职位、起止时间、描述段落(JSON对象数组)。 |
|
||||
| `UserProfileInternship` | manager | 用户实习经历表(bg_user_profile_internship,profile子表),公司、职位、起止时间、描述段落(JSON对象数组)。 |
|
||||
| `UserProfileProject` | manager | 用户项目经历表(bg_user_profile_project,profile子表),公司、项目名、角色、起止时间、描述段落(JSON对象数组)。 |
|
||||
| `UserProfileCompetition` | manager | 用户竞赛经历表(bg_user_profile_competition,profile子表),竞赛名、奖项、获奖时间、描述段落(JSON对象数组)。 |
|
||||
| `JobSkillTagRelation` | manager | 岗位-技能标签关联表(bg_job_skill_tag_relation),预定义技能标签与岗位的关联,用于匹配度计算。 |
|
||||
| `AppJobData` | manager | 爬虫岗位原始数据表(app_job_data),存储爬虫抓取的原始岗位数据,供清洗服务读取并写入业务表。 |
|
||||
|
||||
|
||||
Reference in New Issue
Block a user