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
0c178c61
Commit
0c178c61
authored
Dec 11, 2023
by
LSL
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
浙农中际融担协议
parent
248e162f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ContractJob.java
src/main/java/com/jqtx/windows/job/ContractJob.java
+6
-6
No files found.
src/main/java/com/jqtx/windows/job/ContractJob.java
View file @
0c178c61
...
...
@@ -72,7 +72,7 @@ public class ContractJob {
if
(
sftp
.
isDir
(
dir
))
{
List
<
String
>
list
=
sftp
.
lsDirs
(
dir
);
for
(
String
loanNo
:
list
)
{
uploadProtocolPdf
(
loanNo
,
sftp
,
dir
);
uploadProtocolPdf
(
loanNo
,
sftp
,
dir
,
date
);
}
}
}
catch
(
Exception
e
)
{
...
...
@@ -84,22 +84,22 @@ public class ContractJob {
}
public
void
uploadProtocolPdf
(
String
loanNo
,
Sftp
sftp
,
String
dir
)
{
public
void
uploadProtocolPdf
(
String
loanNo
,
Sftp
sftp
,
String
dir
,
String
date
)
{
List
<
String
>
list
=
sftp
.
lsFiles
(
dir
+
"/"
+
loanNo
);
for
(
String
fileName
:
list
)
{
//只拿以 jkfwxy.pdf 结尾的文件
if
(
fileName
.
indexOf
(
suffix
)
!=
-
1
)
{
String
url
=
getUrl
(
dir
+
"/"
+
loanNo
+
"/"
+
fileName
,
sftp
,
fileName
);
String
url
=
getUrl
(
dir
+
"/"
+
loanNo
+
"/"
+
fileName
,
sftp
,
fileName
,
date
);
getUploadPdfRequest
(
url
,
loanNo
);
}
}
}
public
String
getUrl
(
String
dir
,
Sftp
sftp
,
String
fileName
)
{
public
String
getUrl
(
String
dir
,
Sftp
sftp
,
String
fileName
,
String
date
)
{
sftp
.
get
(
dir
,
"/"
+
fileName
);
ossUtils
.
ossUpload
(
ossPath
+
fileName
,
FileUtil
.
file
(
"/"
+
fileName
));
ossUtils
.
ossUpload
(
ossPath
+
date
+
fileName
,
FileUtil
.
file
(
"/"
+
fileName
));
FileUtil
.
del
(
"/"
+
fileName
);
return
privateDomain
+
ossPath
+
fileName
;
return
privateDomain
+
ossPath
+
date
+
fileName
;
}
public
UploadPdfRequest
getUploadPdfRequest
(
String
url
,
String
loanNo
)
{
...
...
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