Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
本
本级财政预算项目管理系统
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JAVA
本级财政预算项目管理系统
Merge requests
!57
Feature/zhoushiqi
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/zhoushiqi
feature/zhoushiqi
into
develop
Overview
0
Commits
7
Pipelines
1
Changes
11
Merged
周士琪
requested to merge
feature/zhoushiqi
into
develop
2 years ago
Overview
0
Commits
7
Pipelines
1
Changes
11
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
c7572fbd
7 commits,
2 years ago
11 files
+
80
−
24
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/budget/web/api/IEntrustmentFeedbackController.java
+
4
−
0
Options
package
com.seasky.budget.web.api
;
import
com.seasky.budget.web.dto.base.IdRequest
;
import
com.seasky.budget.web.dto.entrustment_feedback.EntrustmentExpertScoreOut
;
import
com.seasky.budget.web.dto.entrustment_feedback.EntrustmentFeedbackCmd
;
import
com.seasky.budget.web.dto.entrustment_feedback.EntrustmentFeedbackOut
;
import
com.seasky.core.common.Result
;
@@ -32,5 +33,8 @@ public interface IEntrustmentFeedbackController {
@PostMapping
(
path
=
"/batchEntrustmentFeedback"
)
Result
<
Integer
>
batchEntrustmentFeedback
(
@RequestBody
@NotNull
@Valid
IdRequest
idRequest
);
@ApiOperation
(
"根据项目id获取专家打分情况"
)
@PostMapping
(
path
=
"/getEntrustmentExpertScoreByProjectId"
)
Result
<
EntrustmentExpertScoreOut
>
getEntrustmentExpertScoreByProjectId
(
@RequestBody
@NotNull
EntrustmentFeedbackCmd
entrustmentFeedbackCmd
);
}