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
!30
Feature/zhoushiqi
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/zhoushiqi
feature/zhoushiqi
into
develop
Overview
0
Commits
9
Pipelines
1
Changes
41
Merged
周士琪
requested to merge
feature/zhoushiqi
into
develop
2 years ago
Overview
0
Commits
9
Pipelines
1
Changes
41
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
a60dc4bd
9 commits,
2 years ago
41 files
+
1404
−
107
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
41
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/budget/web/api/IEntrustmentController.java
+
4
−
4
Options
@@ -24,7 +24,7 @@ public interface IEntrustmentController {
@ApiOperation
(
"生成委托函"
)
@PostMapping
(
path
=
"/saveEntrustment"
)
Result
<
Integer
>
saveEntrustment
(
@RequestBody
@NotNull
@Valid
com
.
seasky
.
budget
.
web
.
dto
.
entrustment
.
EntrustmentCmd
entrustmentCmd
);
Result
<
Integer
>
saveEntrustment
(
@RequestBody
@NotNull
@Valid
EntrustmentCmd
entrustmentCmd
);
@ApiOperation
(
"获取委托函状态列表"
)
@PostMapping
(
path
=
"/getEnstrustmentStateEnumList"
)
@@ -76,7 +76,7 @@ public interface IEntrustmentController {
@ApiOperation
(
"财资中心批量分配委托函给事务所"
)
@PostMapping
(
path
=
"/batchOfiiceDevide"
)
Result
<
Integer
>
batchOfiiceDevide
(
@RequestBody
@NotNull
com
.
seasky
.
budget
.
web
.
dto
.
entrustment
.
EntrustmentOperateCmd
entrustmentOperateCmd
);
Result
<
Integer
>
batchOfiiceDevide
(
@RequestBody
@NotNull
EntrustmentOperateCmd
entrustmentOperateCmd
);
@ApiOperation
(
"财资中心取消认领委托函"
)
@PostMapping
(
path
=
"/cancelClaimEntrustment"
)
@@ -86,14 +86,14 @@ public interface IEntrustmentController {
@PostMapping
(
path
=
"/confirmAccept"
)
Result
<
Integer
>
confirmAccept
(
@RequestBody
@NotNull
EntrustmentOperateCmd
entrustmentOperateCmd
);
@ApiOperation
(
"预审完成前校验"
)
@ApiOperation
(
"预审完成前校验
【预审项目数与项目表个数的对比】
"
)
@PostMapping
(
path
=
"/preliminaryCheck"
)
Result
<
Integer
>
preliminaryCheck
(
@RequestBody
@NotNull
IdRequest
idRequest
);
@ApiOperation
(
"委托函预审完成"
)
@PostMapping
(
path
=
"/preliminary"
)
Result
<
Integer
>
preliminary
(
@RequestBody
@NotNull
IdRequest
idRequest
);
@ApiOperation
(
"获取事务所列表"
)
@ApiOperation
(
"
分配事务所-
获取事务所列表"
)
@PostMapping
(
path
=
"/getOfficeList"
)
Result
<
OfficeOut
>
getOfficeList
();
}