Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
projectplan
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
Operate
Environments
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
班迪
projectplan
Merge requests
!497
预算本部门项目库及校内项目库项目展示、拆分
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
预算本部门项目库及校内项目库项目展示、拆分
feature/wxj/develop
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
10
Merged
王星君
requested to merge
feature/wxj/develop
into
develop
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
10
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
48d198ea
1 commit,
2 years ago
10 files
+
29
−
26
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/projectplan/api/IBudgetInfo.java
+
2
−
1
Options
package
com.seasky.projectplan.api
;
import
com.seasky.core.common.Result
;
import
com.seasky.projectplan.dto.budgetinfo.BudgetInfoOut
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.cloud.openfeign.FeignClient
;
@@ -16,5 +17,5 @@ public interface IBudgetInfo {
@ApiOperation
(
"根据BudgetInfoId查询具体信息"
)
@PostMapping
(
"selectBudgetInfoById"
)
BudgetInfoOut
selectBudgetInfoById
(
@RequestParam
(
value
=
"id"
)
Long
id
);
Result
<
BudgetInfoOut
>
selectBudgetInfoById
(
@RequestParam
(
value
=
"id"
)
Long
id
);
}