From a8553f9ef7e165b6348243af91caad1a987f8f9c Mon Sep 17 00:00:00 2001 From: wzp <2040239371@qq.com> Date: 星期三, 03 九月 2025 17:49:52 +0800 Subject: [PATCH] fix: 修复轨迹查询报错问题。 更换了接口地址和增加请求参数 --- 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