From d12835aa2e4f45c9100af13a0ea98406c4827b9f Mon Sep 17 00:00:00 2001 From: zhongrj <646384940@qq.com> Date: Wed, 28 Jun 2023 09:27:41 +0800 Subject: [PATCH] 新增微信登录模式 --- src/main/java/org/springblade/modules/accreditation/service/impl/AccreditationRecordsServiceImpl.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/springblade/modules/accreditation/service/impl/AccreditationRecordsServiceImpl.java b/src/main/java/org/springblade/modules/accreditation/service/impl/AccreditationRecordsServiceImpl.java index a26abff..2be2c42 100644 --- a/src/main/java/org/springblade/modules/accreditation/service/impl/AccreditationRecordsServiceImpl.java +++ b/src/main/java/org/springblade/modules/accreditation/service/impl/AccreditationRecordsServiceImpl.java @@ -85,7 +85,7 @@ + "'" + records.getType() + "'" + "," + "'" + records.getAuditStatus() + "'" + ")"; //FtpUtil.sqlFileUpload(s); - myAsyncService.FTP(s); + myAsyncService.dataSync(s); } } //判断类型,如果是证书的,审核未通过的可以再次申请,审核通过的,暂时不给于新增记录 @@ -106,7 +106,7 @@ + "'" + records.getType() + "'" + "," + "'" + records.getAuditStatus() + "'" + ")"; //FtpUtil.sqlFileUpload(s); - myAsyncService.FTP(s); + myAsyncService.dataSync(s); } } @@ -240,7 +240,7 @@ "update sys_accreditation_records set status = " + accreditationRecords.getStatus() + "" + "where id = " + "'" + accreditationRecords.getId() + "'"; //FtpUtil.sqlFileUpload(s); - myAsyncService.FTP(s); + myAsyncService.dataSync(s); }); return true; } -- Gitblit v1.9.3