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
5955f96b
Commit
5955f96b
authored
Jan 21, 2025
by
梅存智
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
问卷接口参数调整
parent
163790aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cloud-research-api/src/main/java/com/yizhi/research/application/feign/ResearchClient.java
+1
-1
cloud-research-service/src/main/java/com/yizhi/research/application/controller/ResearchController.java
+1
-1
No files found.
cloud-research-api/src/main/java/com/yizhi/research/application/feign/ResearchClient.java
View file @
5955f96b
...
...
@@ -216,7 +216,7 @@ public interface ResearchClient {
* @return
*/
@GetMapping
(
"/research/top/get"
)
List
<
ResearchVo
>
getResearchTop
(
@RequestParam
(
"bizType"
)
Integer
bizType
);
List
<
ResearchVo
>
getResearchTop
(
@RequestParam
(
value
=
"bizType"
,
required
=
false
)
Integer
bizType
);
/**
* 查看研信详情
...
...
cloud-research-service/src/main/java/com/yizhi/research/application/controller/ResearchController.java
View file @
5955f96b
...
...
@@ -405,7 +405,7 @@ public class ResearchController {
* @return
*/
@GetMapping
(
"/top/get"
)
List
<
ResearchVo
>
getResearchTop
(
@RequestParam
(
"bizType"
)
Integer
bizType
){
List
<
ResearchVo
>
getResearchTop
(
@RequestParam
(
value
=
"bizType"
,
required
=
false
)
Integer
bizType
){
return
researchService
.
getResearchTop
(
bizType
);
}
...
...
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