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
edac40c1
authored
Dec 12, 2025
by
zwb
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修改简历实习与工作经历切换
parent
9ff8730e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
31 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 @
edac40c1
This diff is collapsed.
Click to expand it.
employmentBusiness-pc-modules/employmentBusiness-pc-system/src/main/java/com/bkty/system/service/resume/impl/NewEditionResumeServiceImpl.java
View file @
edac40c1
...
@@ -954,13 +954,19 @@ public class NewEditionResumeServiceImpl implements NewEditionResumeService {
...
@@ -954,13 +954,19 @@ public class NewEditionResumeServiceImpl implements NewEditionResumeService {
public
void
reversalExperience
(
ResumeExpChangeDto
dto
)
throws
Exception
{
public
void
reversalExperience
(
ResumeExpChangeDto
dto
)
throws
Exception
{
//修改工作经历
//修改工作经历
if
(
dto
.
getWorkExperience
()!=
null
){
if
(
dto
.
getWorkExperience
()!=
null
){
if
(
StringUtils
.
isNotBlank
(
dto
.
getWorkExperience
().
getModelName
()))
if
(
StringUtils
.
isNotBlank
(
dto
.
getWorkExperience
().
getModelName
())){
updateModule
(
dto
.
getWorkExperience
().
getModelName
(),
dto
.
getWorkExperience
());
String
modelName
=
dto
.
getWorkExperience
().
getModelName
();
if
(
modelName
.
equals
(
ResumeEnum
.
ResumeModel
.
WORK_EXP
.
getName
()))
updateModule
(
ResumeEnum
.
ResumeModel
.
WORK_EXP
.
getWebCode
(),
dto
.
getWorkExperience
());
}
}
}
//修改实习经历
//修改实习经历
if
(
dto
.
getInternshipExperience
()!=
null
){
if
(
dto
.
getInternshipExperience
()!=
null
){
if
(
StringUtils
.
isNotBlank
(
dto
.
getInternshipExperience
().
getModelName
()))
if
(
StringUtils
.
isNotBlank
(
dto
.
getInternshipExperience
().
getModelName
())){
updateModule
(
dto
.
getInternshipExperience
().
getModelName
(),
dto
.
getInternshipExperience
());
String
modelName
=
dto
.
getInternshipExperience
().
getModelName
();
if
(
modelName
.
equals
(
ResumeEnum
.
ResumeModel
.
INTERNSHIP
.
getName
()))
updateModule
(
ResumeEnum
.
ResumeModel
.
INTERNSHIP
.
getWebCode
(),
dto
.
getWorkExperience
());
}
}
}
}
}
...
...
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