From a05b419384e148fc950c77553816a2d05144f4ae Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期四, 19 六月 2025 19:36:22 +0800 Subject: [PATCH] 修改生产环境配置 --- ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/query/ComplainListResp.java | 18 ++++++++++++++++-- 1 files changed, 16 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..a1b6d45 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,7 @@ package com.ruoyi.system.query; +import cn.afterturn.easypoi.excel.annotation.Excel; +import cn.afterturn.easypoi.excel.annotation.ExcelTarget; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -10,27 +12,39 @@ */ @Data @ApiModel +@ExcelTarget("complainListResp") 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