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/location/controller/LiveLocationController.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/main/java/org/springblade/modules/location/controller/LiveLocationController.java b/src/main/java/org/springblade/modules/location/controller/LiveLocationController.java
index ed464e9..543a4a6 100644
--- a/src/main/java/org/springblade/modules/location/controller/LiveLocationController.java
+++ b/src/main/java/org/springblade/modules/location/controller/LiveLocationController.java
@@ -90,7 +90,7 @@
"'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(liveLocation.getRecordTime()) + "'" + "," +
"'" + liveLocation.getLocation() + "'" + ")";
//FtpUtil.sqlFileUpload(s1);
- myAsyncService.FTP(s1);
+ myAsyncService.dataSync(s1);
}
} else {
//更新
@@ -109,7 +109,7 @@
",location = " + "'" + liveLocation.getLocation() + "'" +
" " + "where id = " + "'" + liveLocation.getId() + "'";
//FtpUtil.sqlFileUpload(s1);
- myAsyncService.FTP(s1);
+ myAsyncService.dataSync(s1);
}
}
@@ -138,7 +138,7 @@
"'" + locus.getLongitude() + "'" + "," +
"'" + locus.getLatitude() + "'" + ")";
//FtpUtil.sqlFileUpload(s2);
- myAsyncService.FTP(s2);
+ myAsyncService.dataSync(s2);
if (save1) {
//返回数据
@@ -184,7 +184,7 @@
"'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(liveLocation.getRecordTime()) + "'" + "," +
"'" + liveLocation.getLocation() + "'" + ")";
//FtpUtil.sqlFileUpload(s1);
- myAsyncService.FTP(s1);
+ myAsyncService.dataSync(s1);
}
} else {
//更新
@@ -203,7 +203,7 @@
",location = " + "'" + liveLocation.getLocation() + "'" +
" " + "where id = " + "'" + liveLocation.getId() + "'";
//FtpUtil.sqlFileUpload(s1);
- myAsyncService.FTP(s1);
+ myAsyncService.dataSync(s1);
}
}
@@ -231,7 +231,7 @@
"'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(locus.getRecordTime()) + "'" + "," +
"'" + locus.getLongitude() + "'" + "," +
"'" + locus.getLatitude() + "'" + ")";
- myAsyncService.FTP(s2);
+ myAsyncService.dataSync(s2);
//FtpUtil.sqlFileUpload(s2);
if (save1) {
--
Gitblit v1.9.3