Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
java_seaskyflowportal
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
班迪
java_seaskyflowportal
Merge requests
!20
2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
2
kejinlong
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
12
Merged
柯金龙
requested to merge
kejinlong
into
develop
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
12
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
3622893b
1 commit,
2 years ago
12 files
+
120
−
1
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/flowportal/api/IExpenseReimbursementController.java
+
9
−
0
Options
@@ -19,6 +19,7 @@ import org.springframework.web.bind.annotation.RequestParam;
import
javax.servlet.http.HttpServletResponse
;
import
javax.validation.constraints.NotEmpty
;
import
java.text.ParseException
;
import
java.util.List
;
@FeignClient
(
"seasky-flow-portal"
)
@RequestMapping
(
"ExpenseReimbursement"
)
@@ -57,6 +58,14 @@ public interface IExpenseReimbursementController {
@PostMapping
(
"/TimerAgainReturn"
)
BaseResultModel
<
Boolean
>
timerAgainReturn
();
/*@ApiOperation("8.[C]同步单条网报失败的单据")
@PostMapping("/AgainReturnApplicationStatus")
BaseResultModel<Boolean> againReturnApplicationStatus(Long id);
@ApiOperation("9.[C]批量同步网报失败的单据")
@PostMapping("/AgainReturnApplicationStatusSyn")
BaseResultModel<Boolean> againReturnApplicationStatusSyn(List<Long> ids);*/
@ApiOperation
(
"1.[Q]查询一条报账信息"
)
@PostMapping
(
"/GetExpenseApply"
)
BaseResultModel
<
ExpenseReimbursementOut
>
getExpenseApply
(
@RequestParam
(
"approvalDetailID"
)
@NotEmpty
String
approvalDetailId
);