Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
张文彪
/
employmentBusinessPc
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6e150202
authored
Nov 27, 2025
by
zwb
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修改简历的用户登录校验
parent
e19a9939
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/controller/NewEditionResumeController.java
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/service/resume/impl/NewEditionResumeServiceImpl.java
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/controller/NewEditionResumeController.java
View file @
6e150202
...
@@ -122,11 +122,11 @@ public class NewEditionResumeController {
...
@@ -122,11 +122,11 @@ public class NewEditionResumeController {
throw
new
JxgException
(
"简历id不能为空"
);
throw
new
JxgException
(
"简历id不能为空"
);
}
}
this
.
newEditionResumeService
.
delResume
(
dto
);
this
.
newEditionResumeService
.
delResume
(
dto
);
Long
userId
=
1L
;
LoginUser
loginUser
=
LoginHelper
.
getLoginUser
();
UserLoginInfo
userLoginInfo
=
SecurityUtils
.
getUser
();
if
(
null
==
loginUser
){
if
(
userLoginInfo
!=
null
){
throw
new
WarnException
(
"用户信息获取失败"
);
userId
=
userLoginInfo
.
getId
();
}
}
Long
userId
=
loginUser
.
getUserId
();
this
.
resumeCacheService
.
delResumeCache
(
Long
.
valueOf
(
dto
.
getResumeId
()),
userId
);
this
.
resumeCacheService
.
delResumeCache
(
Long
.
valueOf
(
dto
.
getResumeId
()),
userId
);
return
R
.
ok
();
return
R
.
ok
();
}
}
...
...
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/service/resume/impl/NewEditionResumeServiceImpl.java
View file @
6e150202
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment