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
18fa217a
authored
Nov 30, 2025
by
zwb
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修改简历导入
parent
2266fcfb
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/service/resume/ResumeCacheService.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/service/resume/impl/ResumeCacheServiceImpl.java
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/service/resume/ResumeCacheService.java
View file @
18fa217a
...
@@ -129,4 +129,9 @@ public interface ResumeCacheService {
...
@@ -129,4 +129,9 @@ public interface ResumeCacheService {
*/
*/
void
delResumeListCache
(
Long
userId
);
void
delResumeListCache
(
Long
userId
);
/**
* 删除模块数据
*/
void
delResumeModelCache
(
Long
resumeId
);
}
}
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/service/resume/impl/NewEditionResumeServiceImpl.java
View file @
18fa217a
...
@@ -226,6 +226,7 @@ public class NewEditionResumeServiceImpl implements NewEditionResumeService {
...
@@ -226,6 +226,7 @@ public class NewEditionResumeServiceImpl implements NewEditionResumeService {
this
.
functionResumeBaseMapper
.
updateById
(
resumeNew
);
this
.
functionResumeBaseMapper
.
updateById
(
resumeNew
);
this
.
resumeCacheService
.
saveUserResumeListCache
(
resumeNew
,
finalUser
.
getId
());
this
.
resumeCacheService
.
saveUserResumeListCache
(
resumeNew
,
finalUser
.
getId
());
this
.
resumeCacheService
.
delResumeListCache
(
finalUser
.
getId
());
this
.
resumeCacheService
.
delResumeListCache
(
finalUser
.
getId
());
this
.
resumeCacheService
.
delResumeModelCache
(
resumeNew
.
getId
());
Map
<
String
,
Object
>
templateMap
=
new
HashMap
<>();
Map
<
String
,
Object
>
templateMap
=
new
HashMap
<>();
templateMap
.
put
(
"templateId"
,
resumeNew
.
getTemplateId
());
templateMap
.
put
(
"templateId"
,
resumeNew
.
getTemplateId
());
...
...
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/service/resume/impl/ResumeCacheServiceImpl.java
View file @
18fa217a
...
@@ -295,4 +295,10 @@ public class ResumeCacheServiceImpl implements ResumeCacheService {
...
@@ -295,4 +295,10 @@ public class ResumeCacheServiceImpl implements ResumeCacheService {
String
key
=
REDIS_RESUME_LIST_KEY_V2
.
formatted
(
userId
);
String
key
=
REDIS_RESUME_LIST_KEY_V2
.
formatted
(
userId
);
redisTemplate
.
delete
(
key
);
redisTemplate
.
delete
(
key
);
}
}
@Override
public
void
delResumeModelCache
(
Long
resumeId
)
{
String
key
=
REDIS_RESUME_MODEL_LIST_KEY
.
formatted
(
resumeId
);
redisTemplate
.
delete
(
key
);
}
}
}
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