From 1d51512c49e89a84c4042a9e3fa48fc4bf438056 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Tue, 14 Dec 2021 10:01:40 +0800
Subject: [PATCH] 1. 新增保安员统计查询,业务情况统计查询 2. 新增保安员统计导出,业务情况统计导出
---
src/main/java/org/springblade/modules/equipage/controller/fixed.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/springblade/modules/equipage/controller/fixed.java b/src/main/java/org/springblade/modules/equipage/controller/fixed.java
index 8e76ad2..4208321 100644
--- a/src/main/java/org/springblade/modules/equipage/controller/fixed.java
+++ b/src/main/java/org/springblade/modules/equipage/controller/fixed.java
@@ -107,7 +107,7 @@
status = liveLocationService.save(liveLocation);
//数据推送
String s1 =
- "insert into sys_live_location(id,type,worker_id,longitude,latitude,record_time,location) " +
+ "insert into sys_live_location(id,type,worker_id,longitude,latitude,record_time) " +
"values(" + "'" + liveLocation.getId() + "'" + "," +
"'" + liveLocation.getType() + "'" + "," +
"'" + liveLocation.getWorkerId() + "'" + "," +
@@ -253,7 +253,7 @@
status = liveLocationService.save(liveLocation);
//数据推送
String s1 =
- "insert into sys_live_location(id,type,worker_id,longitude,latitude,record_time,location) " +
+ "insert into sys_live_location(id,type,worker_id,longitude,latitude,record_time) " +
"values(" + "'" + liveLocation.getId() + "'" + "," +
"'" + liveLocation.getType() + "'" + "," +
"'" + liveLocation.getWorkerId() + "'" + "," +
--
Gitblit v1.9.3