Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
windows
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhanhai
windows
Commits
ef63ab0c
Commit
ef63ab0c
authored
Dec 07, 2023
by
LSL
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
浙农对账文件
parent
439905fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
SftpController.java
src/main/java/com/jqtx/windows/web/SftpController.java
+4
-1
No files found.
src/main/java/com/jqtx/windows/web/SftpController.java
View file @
ef63ab0c
...
@@ -4,10 +4,12 @@ import com.jqtx.windows.service.SftpService;
...
@@ -4,10 +4,12 @@ import com.jqtx.windows.service.SftpService;
import
com.jqtx.windows.web.response.JsonResult
;
import
com.jqtx.windows.web.response.JsonResult
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
io.swagger.annotations.ApiOperation
;
import
io.swagger.annotations.ApiParam
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.bind.annotation.RestController
;
/**
/**
...
@@ -26,7 +28,8 @@ public class SftpController {
...
@@ -26,7 +28,8 @@ public class SftpController {
@ApiOperation
(
value
=
"获取浙农文件"
,
tags
=
{
"浙农文件接口"
},
notes
=
"获取浙农文件"
)
@ApiOperation
(
value
=
"获取浙农文件"
,
tags
=
{
"浙农文件接口"
},
notes
=
"获取浙农文件"
)
@GetMapping
(
"/getFileByType"
)
@GetMapping
(
"/getFileByType"
)
public
JsonResult
<
String
>
getFileByType
(
String
type
,
String
date
)
{
public
JsonResult
<
String
>
getFileByType
(
@RequestParam
@ApiParam
(
name
=
"type"
,
value
=
"文件类型"
,
required
=
true
)
String
type
,
@RequestParam
@ApiParam
(
name
=
"date"
,
value
=
"日期"
,
required
=
true
)
String
date
)
{
log
.
info
(
"获取浙农文件:{},{}"
,
date
,
type
);
log
.
info
(
"获取浙农文件:{},{}"
,
date
,
type
);
return
sftpService
.
getFileByType
(
date
,
type
);
return
sftpService
.
getFileByType
(
date
,
type
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment