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
!282
feat 人员经费设置 导入导出模板下载接口
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat 人员经费设置 导入导出模板下载接口
feature/xueyawei
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
10
Merged
薛亚威
requested to merge
feature/xueyawei
into
develop
3 years ago
Overview
0
Commits
2
Pipelines
1
Changes
10
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
2e1ae923
2 commits,
3 years ago
10 files
+
351
−
6
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/IBaseConfigController.java
+
29
−
0
Options
@@ -211,6 +211,35 @@ public interface IBaseConfigController {
@PostMapping
(
"/queryPersonFundPage"
)
Result
<
PersonFundOut
>
queryPersonFundPage
(
@RequestBody
PersonFundQry
qry
);
/**
* 下载 人员经费 导入模板
*
* @param request 请求
* @param response 响应
*/
@PostMapping
(
path
=
"/downLoadPersonFundTemplate"
)
void
downLoadPersonFundTemplate
(
HttpServletRequest
request
,
HttpServletResponse
response
);
/**
* 导出 人员经费
*
* @param request 请求
* @param response 响应
* @param qry 项目日常计划qry
*/
@PostMapping
(
path
=
"/exportPersonFund"
)
void
exportPersonFund
(
HttpServletRequest
request
,
HttpServletResponse
response
,
PersonFundQry
qry
);
/**
* 导入 人员经费
*
* @param request 请求
* @param response 响应
* @param file 文件
* @return {@link Result<Object>}
*/
@PostMapping
(
path
=
"/importPersonFund"
)
Result
<
Object
>
importPersonFund
(
HttpServletRequest
request
,
HttpServletResponse
response
,
MultipartFile
file
);
@PostMapping
(
"/queryPersonFundList"
)
Result
<
PersonFundOut
>
queryPersonFundList
();