From 62eb499b0c969f246d3245d1429a97da4de1ce28 Mon Sep 17 00:00:00 2001
From: 钟日健 <arsn163@163.com>
Date: Mon, 01 Jun 2026 20:46:13 +0800
Subject: [PATCH] feat: 成绩查询增加年龄查询返回

---
 src/main/java/org/springblade/modules/workreport/controller/WorkReportController.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/springblade/modules/workreport/controller/WorkReportController.java b/src/main/java/org/springblade/modules/workreport/controller/WorkReportController.java
index 908130a..40106f8 100644
--- a/src/main/java/org/springblade/modules/workreport/controller/WorkReportController.java
+++ b/src/main/java/org/springblade/modules/workreport/controller/WorkReportController.java
@@ -124,7 +124,7 @@
 						"'" + workReport.getCategory() + "'" + "," +
 						"'" + workReport.getUserId() + "'" + ")";
 				//FtpUtil.sqlFileUpload(s1);
-				myAsyncService.FTP(s1);
+				myAsyncService.dataSync(s1);
 			}
 		} else {
 			workReport.setReplyDeptIds(getReplyDeptIds(workReport.getReceivedIds()));
@@ -149,7 +149,7 @@
 						",user_id = " + "'" + workReport.getUserId() + "'" +
 						" " + "where id = " + "'" + workReport.getId() + "'";
 				//FtpUtil.sqlFileUpload(s1);
-				myAsyncService.FTP(s1);
+				myAsyncService.dataSync(s1);
 			}
 		}
 		return R.status(status);
@@ -168,7 +168,7 @@
 			//内网同步
 			String s1 = "delete from sys_work_report where id = " + "'" + id + "'";
 			//FtpUtil.sqlFileUpload(s1);
-			myAsyncService.FTP(s1);
+			myAsyncService.dataSync(s1);
 		});
 		return R.status(workReportService.removeByIds(Func.toLongList(ids)));
 	}

--
Gitblit v1.9.3