Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
seasky_adjust
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
班迪
seasky_adjust
Merge requests
!26
Jjking
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Jjking
jjking
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
周全
requested to merge
jjking
into
develop
3 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
f61b17fe
2 commits,
3 years ago
2 files
+
15
−
13
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/adjustproject/api/IAdjustPlanController.java
+
3
−
2
Options
@@ -14,6 +14,7 @@ import org.springframework.cloud.openfeign.FeignClient;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
java.util.List
;
@@ -33,7 +34,7 @@ public interface IAdjustPlanController {
*/
@PostMapping
(
path
=
"pc/v1/getAdjustPlan"
)
@ApiOperation
(
"查询调整计划"
)
Result
<
AdjustPlanFlowOut
>
getAdjustPlan
(
@Request
Body
Long
id
);
Result
<
AdjustPlanFlowOut
>
getAdjustPlan
(
@Request
Param
(
value
=
"id"
)
Long
id
);
/**
* 查询调整计划事由
@@ -42,7 +43,7 @@ public interface IAdjustPlanController {
*/
@PostMapping
(
path
=
"pc/v1/getAdjustPlanCause"
)
@ApiOperation
(
"查询调整计划事由"
)
Result
<
AdjustPlanCauseOut
>
getAdjustPlanCause
(
@Request
Body
Long
id
);
Result
<
AdjustPlanCauseOut
>
getAdjustPlanCause
(
@Request
Param
(
value
=
"id"
)
Long
id
);
/**
* 分页查询调整计划