From 354ca3e06039fbd59a774b6fa168b283f5f1d392 Mon Sep 17 00:00:00 2001
From: zhongrj <123456>
Date: Wed, 24 Aug 2022 15:38:43 +0800
Subject: [PATCH] dev 数据库连接配置修改

---
 src/main/java/org/springblade/modules/accreditation/controller/AccreditationRecordsController.java |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/springblade/modules/accreditation/controller/AccreditationRecordsController.java b/src/main/java/org/springblade/modules/accreditation/controller/AccreditationRecordsController.java
index 9b6f5e7..57a731d 100644
--- a/src/main/java/org/springblade/modules/accreditation/controller/AccreditationRecordsController.java
+++ b/src/main/java/org/springblade/modules/accreditation/controller/AccreditationRecordsController.java
@@ -179,7 +179,6 @@
 					",audit_time = " + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(accreditationRecords.getAuditTime()) + "" +
 					",audit_user = " + accreditationRecords.getAuditUser() + " " +
 					"where id = " + "'" + accreditationRecords.getId() + "'";
-			//FtpUtil.sqlFileUpload(s);
 			myAsyncService.dataSync(s);
 		}
 		//返回
@@ -222,7 +221,6 @@
 							"update blade_user set user_type = " + user.getUserType() + "" +
 							",update_time = " + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(user.getUpdateTime()) + "" +
 							"where id = " + "'" + user.getId() + "'";
-					//FtpUtil.sqlFileUpload(s);
 					myAsyncService.dataSync(s);
 				}else {
 					//内网同步
@@ -232,7 +230,6 @@
 							",audit_time = " + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(accreditationRecords.getAuditTime()) + "" +
 							",audit_user = " + accreditationRecords.getAuditUser() + " " +
 							"where id = " + "'" + accreditationRecords.getId() + "'";
-					//FtpUtil.sqlFileUpload(s);
 					myAsyncService.dataSync(s);
 				}
 			}else {
@@ -243,7 +240,6 @@
 						",audit_time = " + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(accreditationRecords.getAuditTime()) + "" +
 						",audit_user = " + accreditationRecords.getAuditUser() + " " +
 						"where id = " + "'" + accreditationRecords.getId() + "'";
-				//FtpUtil.sqlFileUpload(s);
 				myAsyncService.dataSync(s);
 			}
 		});

--
Gitblit v1.9.3