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/VehicleInfo.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java index ad3a522..b8aa771 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java @@ -38,6 +38,10 @@ @Excel(name = "鐘舵��", readConverterExp = "0=姝e父,1=鍋滅敤") private String status; + /** 骞冲彴鏍囪瘑 */ + @Excel(name = "骞冲彴鏍囪瘑") + private String platformCode; + public void setVehicleId(Long vehicleId) { this.vehicleId = vehicleId; } @@ -94,6 +98,14 @@ return status; } + public String getPlatformCode() { + return platformCode; + } + + public void setPlatformCode(String platformCode) { + this.platformCode = platformCode; + } + @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) @@ -104,6 +116,7 @@ .append("vehicleBrand", getVehicleBrand()) .append("vehicleModel", getVehicleModel()) .append("status", getStatus()) + .append("platformCode", getPlatformCode()) .append("createBy", getCreateBy()) .append("createTime", getCreateTime()) .append("updateBy", getUpdateBy()) -- Gitblit v1.9.1