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
e033a28d
Commit
e033a28d
authored
Sep 16, 2025
by
“Kongxiangkun”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
投票明细导出字段顺序调整
parent
3659d90c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
cloud-research-service/src/main/java/com/yizhi/research/application/service/impl/TrResearchQuestionServiceImpl.java
+3
-0
No files found.
cloud-research-service/src/main/java/com/yizhi/research/application/service/impl/TrResearchQuestionServiceImpl.java
View file @
e033a28d
package
com
.
yizhi
.
research
.
application
.
service
.
impl
;
import
cn.hutool.json.JSONUtil
;
import
com.baomidou.mybatisplus.mapper.EntityWrapper
;
import
com.baomidou.mybatisplus.service.impl.ServiceImpl
;
import
com.google.common.collect.Lists
;
...
...
@@ -483,6 +484,7 @@ public class TrResearchQuestionServiceImpl extends ServiceImpl<TrResearchQuestio
@Override
public
List
<
TrResearchQuestion
>
listAll
(
Long
researchId
,
Integer
pageSize
,
Integer
pageNo
)
{
LOG
.
info
(
"获取投票列表入参 researchId:{}, pageSize:{}, pageNo:{}"
,
researchId
,
pageSize
,
pageNo
);
if
(
pageNo
==
null
)
{
pageNo
=
1
;
}
...
...
@@ -496,6 +498,7 @@ public class TrResearchQuestionServiceImpl extends ServiceImpl<TrResearchQuestio
ew
.
orderBy
(
"no"
,
true
);
ew
.
last
(
"limit "
+
(
pageNo
-
1
)
*
pageSize
+
","
+
pageSize
);
List
<
TrResearchQuestion
>
questionList
=
researchQuestionMapper
.
selectList
(
ew
);
LOG
.
info
(
"获取投票列表返回 questionList:{}"
,
JSONUtil
.
toJsonStr
(
questionList
));
TrResearchQuestionOption
option
=
new
TrResearchQuestionOption
();
option
.
setDeleted
(
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