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 | 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