Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
projectplan_gzy
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
班迪
projectplan_gzy
Merge requests
!141
收入编制流程
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
收入编制流程
feature/fengguangyu
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
4
Merged
班迪
requested to merge
feature/fengguangyu
into
develop
4 years ago
Overview
0
Commits
2
Pipelines
1
Changes
4
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
5835cd9c
2 commits,
4 years ago
4 files
+
249
−
32
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/projectplan/api/IInComePlanController.java
+
46
−
0
Options
@@ -9,6 +9,7 @@ import com.seasky.projectplan.dto.incomeplan.InComePlanCmd;
import
com.seasky.projectplan.dto.incomeplan.InComePlanOut
;
import
com.seasky.projectplan.dto.incomeplan.InComePlanSubCmd
;
import
com.seasky.projectplan.dto.incomeplan.IncomeplanQry
;
import
com.seasky.projectplan.dto.projectplan.ActionFlowCmd
;
import
org.springframework.cloud.openfeign.FeignClient
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
@@ -96,4 +97,49 @@ public interface IInComePlanController {
*/
@PostMapping
(
path
=
"/queryStudentTypeEnumList"
)
Result
<
InComePlanOut
>
queryStudentTypeEnumList
();
/**
* 提交项目申报书
*
* @param actionFlowCmd 动作流cmd
* @return {@link Result<Integer>}
*/
@PostMapping
(
path
=
"/submitInComePlan"
)
Result
<
Integer
>
submitInComePlan
(
ActionFlowCmd
actionFlowCmd
);
/**
* 退回项目申报书
*
* @param actionFlowCmd 动作流cmd
* @return {@link Result<Integer>}
*/
@PostMapping
(
path
=
"/rollBackInComePlan"
)
Result
<
Integer
>
rollBackInComePlan
(
ActionFlowCmd
actionFlowCmd
);
/**
* 撤回项目申报书
*
* @param actionFlowCmd 动作流cmd
* @return {@link Result<Integer>}
*/
@PostMapping
(
path
=
"/reCallInComePlan"
)
Result
<
Integer
>
reCallInComePlan
(
ActionFlowCmd
actionFlowCmd
);
/**
* 批量提交项目申报书
*
* @param actionFlowCmdList 动作流cmd列表
* @return {@link Result<Integer>}
*/
@PostMapping
(
path
=
"/submitInComePlanList"
)
Result
<
Integer
>
submitInComePlanList
(
List
<
ActionFlowCmd
>
actionFlowCmdList
);
/**
* 批量退回项目申报书
*
* @param actionFlowCmdList 动作流cmd列表
* @return {@link Result<Integer>}
*/
@PostMapping
(
path
=
"/rollBackInComePlanList"
)
Result
<
Integer
>
rollBackInComePlanList
(
List
<
ActionFlowCmd
>
actionFlowCmdList
);
}