Compare commits
3 Commits
ee04c6d8e2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c8fc1c8f9e | ||
|
|
8eec526723 | ||
|
|
69ddabd041 |
@@ -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(
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user