From fa5ea853099e88be253fca4fb2b0c2b7af5f396e Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期日, 09 十一月 2025 15:57:04 +0800
Subject: [PATCH] feat:微信登录
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleGps.java | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 47 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 3d7f7fd..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
@@ -64,6 +64,20 @@
/** 缁撴潫鏃堕棿 */
private String endTime;
+ /** 鎺掑簭鍒� */
+ private String orderByColumn;
+
+ /** 鍦板潃 */
+ private String address;
+
+ /** 鎺掑簭鐨勬柟鍚慸esc鎴栬�卆sc */
+ private String isAsc;
+
+ /**
+ * 璁㈠崟鍙凤紝鎺ユ敹璇锋眰鐢ㄧ殑
+ */
+ private Long orderId;
+
public void setGpsId(Long gpsId) {
this.gpsId = gpsId;
}
@@ -176,6 +190,38 @@
this.endTime = endTime;
}
+ public String getOrderByColumn() {
+ return orderByColumn;
+ }
+
+ public void setOrderByColumn(String orderByColumn) {
+ this.orderByColumn = orderByColumn;
+ }
+
+ public String getIsAsc() {
+ return isAsc;
+ }
+
+ public void setIsAsc(String isAsc) {
+ 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)
@@ -192,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