From 4109495b9c51a4bbd8b0a7c3c69093909d2e33e1 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期一, 07 四月 2025 18:55:05 +0800 Subject: [PATCH] 修改接口bug --- ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/query/ComplainListResp.java | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/query/ComplainListResp.java b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/query/ComplainListResp.java index 0d717a3..8f41572 100644 --- a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/query/ComplainListResp.java +++ b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/query/ComplainListResp.java @@ -1,5 +1,6 @@ package com.ruoyi.system.query; +import cn.afterturn.easypoi.excel.annotation.Excel; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -12,25 +13,36 @@ @ApiModel public class ComplainListResp { @ApiModelProperty("车辆名称") + @Excel(name = "车辆名称", width = 30) private String carName; @ApiModelProperty("车牌号") + @Excel(name = "车牌号码", width = 30) private String vehicleNumber; @ApiModelProperty("投诉内容") + @Excel(name = "投诉内容", width = 30) private String content; @ApiModelProperty("投诉人电话") + @Excel(name = "投诉人电话", width = 30) private String complainPhone; - @ApiModelProperty("驾驶员名称") - private String driverName; @ApiModelProperty("所属公司") + @Excel(name = "被投诉所属公司", width = 30) private String enterpriseName; + @ApiModelProperty("驾驶员名称") + @Excel(name = "被投诉驾驶员", width = 30) + private String driverName; @ApiModelProperty("投诉时间") + @Excel(name = "投诉时间", width = 30) private String complainTime; @ApiModelProperty("处理状态") + @Excel(name = "处理状态", width = 30) private String treatmentState; @ApiModelProperty("处理人") + @Excel(name = "处理人", width = 30) private String treatmentUser; @ApiModelProperty("处理时间") + @Excel(name = "处理时间", width = 30) private String treatmentTime; @ApiModelProperty("处理描述") + @Excel(name = "处理描述", width = 30) private String treatmentRemark; } -- Gitblit v1.7.1