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
cc55aeba
Commit
cc55aeba
authored
Nov 22, 2023
by
LSL
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
结清默认结清账单
parent
340ca639
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
BackedBurdenJob.java
src/main/java/com/jqtx/windows/job/BackedBurdenJob.java
+8
-2
RedeemJob.java
src/main/java/com/jqtx/windows/job/RedeemJob.java
+7
-4
No files found.
src/main/java/com/jqtx/windows/job/BackedBurdenJob.java
View file @
cc55aeba
...
@@ -13,9 +13,11 @@ import com.jqtx.windows.component.impl.BackedBurdenComponentImpl;
...
@@ -13,9 +13,11 @@ import com.jqtx.windows.component.impl.BackedBurdenComponentImpl;
import
com.jqtx.windows.component.model.*
;
import
com.jqtx.windows.component.model.*
;
import
com.jqtx.windows.infrastructure.feign.enums.DebtInfoStatusEnum
;
import
com.jqtx.windows.infrastructure.feign.enums.DebtInfoStatusEnum
;
import
com.jqtx.windows.infrastructure.feign.enums.DebtPlanStatusEnum
;
import
com.jqtx.windows.infrastructure.feign.enums.DebtPlanStatusEnum
;
import
com.xxl.job.core.context.XxlJobHelper
;
import
com.xxl.job.core.handler.annotation.XxlJob
;
import
com.xxl.job.core.handler.annotation.XxlJob
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
import
org.springframework.stereotype.Component
;
...
@@ -45,15 +47,19 @@ public class BackedBurdenJob {
...
@@ -45,15 +47,19 @@ public class BackedBurdenJob {
@XxlJob
(
"backedBurdenJob"
)
@XxlJob
(
"backedBurdenJob"
)
public
void
run
()
{
public
void
run
()
{
String
param
=
XxlJobHelper
.
getJobParam
();
Sftp
sftp
=
new
Sftp
(
"115.238.89.106"
,
9901
,
"xiaohua_fr"
,
"R7MADMx1lwMN5k4v"
,
CharsetUtil
.
CHARSET_UTF_8
);
Sftp
sftp
=
new
Sftp
(
"115.238.89.106"
,
9901
,
"xiaohua_fr"
,
"R7MADMx1lwMN5k4v"
,
CharsetUtil
.
CHARSET_UTF_8
);
String
date
=
DateUtil
.
format
(
new
Date
(),
"yyyyMMdd"
);
String
date
=
DateUtil
.
format
(
new
Date
(),
"yyyyMMdd"
);
if
(
sftp
.
isDir
(
"/download/assurance/"
+
date
+
"/assurance_"
+
date
+
".txt"
))
{
if
(
StringUtils
.
isNotEmpty
(
param
))
{
date
=
param
;
}
if
(
sftp
.
isDir
(
"/download/assurance/"
+
date
))
{
sftp
.
cd
(
"/download/assurance/"
+
date
);
sftp
.
cd
(
"/download/assurance/"
+
date
);
sftp
.
get
(
"assurance_"
+
date
+
".txt"
,
"/assurance_sftp.txt"
);
sftp
.
get
(
"assurance_"
+
date
+
".txt"
,
"/assurance_sftp.txt"
);
ossUtils
.
ossUpload
(
"ZN/assurance_/"
+
"assurance_"
+
date
+
".txt"
,
FileUtil
.
file
(
"/assurance_sftp.txt"
));
ossUtils
.
ossUpload
(
"ZN/assurance_/"
+
"assurance_"
+
date
+
".txt"
,
FileUtil
.
file
(
"/assurance_sftp.txt"
));
FileUtil
.
del
(
"/sftp.txt"
);
FileUtil
.
del
(
"/sftp.txt"
);
String
stringObject
=
ossUtils
.
getStringObject
(
"ZN/assurance_/"
+
"assurance_"
+
date
+
".txt"
);
String
stringObject
=
ossUtils
.
getStringObject
(
"ZN/assurance_/"
+
"assurance_"
+
date
+
".txt"
);
log
.
info
(
"
date
:{}"
,
stringObject
);
log
.
info
(
"
oss融担数据
:{}"
,
stringObject
);
//存储并去平账
//存储并去平账
List
<
BurdenModel
>
getlist
=
getlist
(
stringObject
);
List
<
BurdenModel
>
getlist
=
getlist
(
stringObject
);
for
(
BurdenModel
model
:
getlist
)
{
for
(
BurdenModel
model
:
getlist
)
{
...
...
src/main/java/com/jqtx/windows/job/RedeemJob.java
View file @
cc55aeba
...
@@ -7,8 +7,10 @@ import cn.hutool.extra.ssh.Sftp;
...
@@ -7,8 +7,10 @@ import cn.hutool.extra.ssh.Sftp;
import
com.jqtx.infrastructure.oss.starter.config.OssUtils
;
import
com.jqtx.infrastructure.oss.starter.config.OssUtils
;
import
com.jqtx.windows.component.RedeemComponent
;
import
com.jqtx.windows.component.RedeemComponent
;
import
com.jqtx.windows.component.model.RedeemModel
;
import
com.jqtx.windows.component.model.RedeemModel
;
import
com.xxl.job.core.context.XxlJobHelper
;
import
com.xxl.job.core.handler.annotation.XxlJob
;
import
com.xxl.job.core.handler.annotation.XxlJob
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
import
org.springframework.stereotype.Component
;
...
@@ -27,18 +29,19 @@ public class RedeemJob {
...
@@ -27,18 +29,19 @@ public class RedeemJob {
@XxlJob
(
"redeemJob"
)
@XxlJob
(
"redeemJob"
)
public
void
run
()
{
public
void
run
()
{
String
param
=
XxlJobHelper
.
getJobParam
();
Sftp
sftp
=
new
Sftp
(
"115.238.89.106"
,
9901
,
"xiaohua_fr"
,
"R7MADMx1lwMN5k4v"
,
CharsetUtil
.
CHARSET_UTF_8
);
Sftp
sftp
=
new
Sftp
(
"115.238.89.106"
,
9901
,
"xiaohua_fr"
,
"R7MADMx1lwMN5k4v"
,
CharsetUtil
.
CHARSET_UTF_8
);
String
date
=
DateUtil
.
format
(
new
Date
(),
"yyyyMMdd"
);
String
date
=
DateUtil
.
format
(
new
Date
(),
"yyyyMMdd"
);
if
(
sftp
.
isDir
(
"/download/compensatory/"
+
date
))
{
if
(
StringUtils
.
isNotEmpty
(
param
))
{
log
.
info
(
"浙农代偿文件目录:{}"
,
date
)
;
date
=
param
;
}
}
if
(
sftp
.
isDir
(
"/download/compensatory/"
+
date
+
"/compensatory_"
+
date
+
".txt"
))
{
if
(
sftp
.
isDir
(
"/download/compensatory/"
+
date
))
{
sftp
.
cd
(
"/download/compensatory/"
+
date
);
sftp
.
cd
(
"/download/compensatory/"
+
date
);
sftp
.
get
(
"compensatory_"
+
date
+
".txt"
,
"/compensatory_sftp.txt"
);
sftp
.
get
(
"compensatory_"
+
date
+
".txt"
,
"/compensatory_sftp.txt"
);
ossUtils
.
ossUpload
(
"ZN/compensatory/"
+
"compensatory_"
+
date
+
".txt"
,
FileUtil
.
file
(
"/compensatory_sftp.txt"
));
ossUtils
.
ossUpload
(
"ZN/compensatory/"
+
"compensatory_"
+
date
+
".txt"
,
FileUtil
.
file
(
"/compensatory_sftp.txt"
));
FileUtil
.
del
(
"/compensatory_sftp.txt"
);
FileUtil
.
del
(
"/compensatory_sftp.txt"
);
String
stringObject
=
ossUtils
.
getStringObject
(
"ZN/compensatory/"
+
"compensatory_"
+
date
+
".txt"
);
String
stringObject
=
ossUtils
.
getStringObject
(
"ZN/compensatory/"
+
"compensatory_"
+
date
+
".txt"
);
log
.
info
(
"oss数据:{}"
,
stringObject
);
log
.
info
(
"oss
代偿
数据:{}"
,
stringObject
);
redeemComponent
.
insert
(
getlist
(
stringObject
));
redeemComponent
.
insert
(
getlist
(
stringObject
));
}
else
{
}
else
{
log
.
info
(
"浙农代偿文件不存在:{}"
,
date
);
log
.
info
(
"浙农代偿文件不存在:{}"
,
date
);
...
...
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