From d4fe921568bc29d72644a55fd194adf7f9277cb5 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期六, 22 十一月 2025 15:28:35 +0800
Subject: [PATCH] feat: 将旧系统数据同步到新系统
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleGps.java | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleGps.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleGps.java
index b9d84ff..daf5d6e 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleGps.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleGps.java
@@ -67,8 +67,16 @@
/** 鎺掑簭鍒� */
private String orderByColumn;
+ /** 鍦板潃 */
+ private String address;
+
/** 鎺掑簭鐨勬柟鍚慸esc鎴栬�卆sc */
private String isAsc;
+
+ /**
+ * 璁㈠崟鍙凤紝鎺ユ敹璇锋眰鐢ㄧ殑
+ */
+ private Long orderId;
public void setGpsId(Long gpsId) {
this.gpsId = gpsId;
@@ -198,6 +206,22 @@
this.isAsc = isAsc;
}
+ public void setOrderId(Long orderId){
+ this.orderId = orderId;
+ }
+
+ public Long getOrderId(){
+ return this.orderId;
+ }
+
+ public void setAddress(String address) {
+ this.address = address;
+ }
+
+ public String getAddress() {
+ return address;
+ }
+
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
@@ -214,6 +238,7 @@
.append("deviceReportTime", getDeviceReportTime())
.append("platformProcessTime", getPlatformProcessTime())
.append("createTime", getCreateTime())
+ .append("address", getAddress())
.toString();
}
}
\ No newline at end of file
--
Gitblit v1.9.1