Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
research-project
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hqzhdj
research-project
Commits
397e7d6f
Commit
397e7d6f
authored
Apr 07, 2025
by
阳浪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工作任务问题排序
parent
d09a6680
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
cloud-research-service/src/main/java/com/yizhi/research/application/service/impl/TrResearchQuestionServiceImpl.java
+13
-0
No files found.
cloud-research-service/src/main/java/com/yizhi/research/application/service/impl/TrResearchQuestionServiceImpl.java
View file @
397e7d6f
...
...
@@ -123,6 +123,19 @@ public class TrResearchQuestionServiceImpl extends ServiceImpl<TrResearchQuestio
@Override
public
int
updateNo
(
QuestionJumpVo
vo
){
if
(
vo
.
getQuestionId
()!=
null
){
TrResearchQuestion
question
=
researchQuestionMapper
.
selectById
(
vo
.
getQuestionId
());
if
(
question
==
null
){
return
0
;
}
List
<
TrResearchQuestion
>
questionList
=
researchQuestionMapper
.
listAllForJump
(
0
,
question
.
getResearchId
());
if
(
CollectionUtils
.
isEmpty
(
questionList
)){
return
0
;
}
Optional
<
TrResearchQuestion
>
optional
=
questionList
.
stream
().
filter
(
q
->
Objects
.
equals
(
q
.
getNo
(),
vo
.
getNo
())).
findFirst
();
if
(
optional
!=
null
&&
optional
.
isPresent
()){
TrResearchQuestion
trResearchQuestion
=
optional
.
get
();
researchQuestionMapper
.
updateQNoById
(
trResearchQuestion
.
getId
(),
question
.
getNo
());
}
return
researchQuestionMapper
.
updateQNoById
(
vo
.
getQuestionId
(),
vo
.
getNo
());
}
return
0
;
...
...
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