Compare commits

...

3 Commits

Author SHA1 Message Date
chenshaohua
c8fc1c8f9e 修改pc端接口浏览记录 2026-07-24 20:27:21 +08:00
francis-fh
8eec526723 Merge branch 'main' of http://124.243.245.42:3000/zkr/shz-backend 2026-07-24 19:27:50 +08:00
francis-fh
69ddabd041 用户信息接口增加培训经历、教育经历 2026-07-24 19:27:49 +08:00
2 changed files with 10 additions and 2 deletions

View File

@@ -51,8 +51,8 @@ public class CmsHrUserBehaviorRecordController extends BaseController {
* 上报浏览行为/投递行为
*/
@ApiOperation("上报浏览行为/投递行为")
@PreAuthorize("@ss.hasPermi('cms:behavior:report')")
@Log(title = "用户培训经历", businessType = BusinessType.INSERT)
//@PreAuthorize("@ss.hasPermi('cms:behavior:report')")
@Log(title = "浏览行为", businessType = BusinessType.INSERT)
@PostMapping("/report")
public AjaxResult reportBehavior(@RequestBody HrUserBehaviorRecord record) {
HrUserBehaviorRecord exist = hrUserBehaviorRecordService.getExistViewRecord(

View File

@@ -598,6 +598,14 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserMapper,AppUser> imple
List<AppSkill> skillList=appSkillMapper.getList(parmsk);
appUser.setAppSkillsList(skillList);
//查询教育经历
List<AppUserEducation> educationsList=appUserEducationMapper.selectEducationListByUserId(appUser.getUserId());
appUser.setEducationsList(educationsList);
//查询培训经历
List<AppUserTrain> trainsList=appUserTrainMapper.selectTrainListByUserId(appUser.getUserId());
appUser.setTrainsList(trainsList);
//查询附件
File fileParm=new File();
fileParm.setBussinessid(appUser.getUserId());