From ec09e9f2c72ff37654076c327008ac89ed32a8c3 Mon Sep 17 00:00:00 2001
From: jiangqs <343695869@qq.com>
Date: 星期六, 24 六月 2023 17:44:11 +0800
Subject: [PATCH] 导入导出

---
 ruoyi-modules/ruoyi-member/src/main/java/com/ruoyi/member/domain/vo/MgtMemberSuggestPageVo.java |   44 ++++++++++++++++++--------------------------
 1 files changed, 18 insertions(+), 26 deletions(-)

diff --git a/ruoyi-modules/ruoyi-member/src/main/java/com/ruoyi/member/domain/vo/MgtMemberSuggestPageVo.java b/ruoyi-modules/ruoyi-member/src/main/java/com/ruoyi/member/domain/vo/MgtMemberSuggestPageVo.java
index 44ed756..a2c2791 100644
--- a/ruoyi-modules/ruoyi-member/src/main/java/com/ruoyi/member/domain/vo/MgtMemberSuggestPageVo.java
+++ b/ruoyi-modules/ruoyi-member/src/main/java/com/ruoyi/member/domain/vo/MgtMemberSuggestPageVo.java
@@ -1,6 +1,7 @@
 package com.ruoyi.member.domain.vo;
 
 import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ruoyi.common.core.annotation.Excel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 
@@ -19,69 +20,60 @@
 
     @ApiModelProperty(value = "建议id")
     private Long suggestId;
-
+    @Excel(name = "用户姓名", width = 30)
     @ApiModelProperty(value = "用户姓名")
     private String userRealName;
-
+    @Excel(name = "用户昵称", width = 30)
     @ApiModelProperty(value = "用户昵称")
     private String userNickName;
-
+    @Excel(name = "用户性别", width = 30)
     @ApiModelProperty(value = "用户性别")
     private String gender;
-
+    @Excel(name = "用户手机", width = 30)
     @ApiModelProperty(value = "用户手机")
     private String userMobile;
-
+    @Excel(name = "建议类型", width = 30)
     @ApiModelProperty(value = "建议类型1.平台2.门店")
     private String suggestType;
-
+    @Excel(name = "建议内容", width = 30)
     @ApiModelProperty(value = "建议内容")
     private String suggestContent;
-
+    @Excel(name = "平台回复内容", width = 30)
     @ApiModelProperty(value = "平台回复内容")
     private String replayContent;
-
+    @Excel(name = "商户回复内容", width = 30)
     @ApiModelProperty(value = "商户回复内容")
     private String shopReplayContent;
-
+    @Excel(name = "建议状态", width = 30)
     @ApiModelProperty(value = "建议状态")
     private String suggestStatus;
-
+    @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
     @ApiModelProperty(value = "创建时间")
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     private Date createTime;
-
+    @Excel(name = "回复人姓名", width = 30)
     @ApiModelProperty(value = "回复人姓名")
     private String replayUserName;
-
+    @Excel(name = "回复时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
     @ApiModelProperty(value = "回复时间")
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     private Date replayTime;
-
+    @Excel(name = "平台响应时间", width = 30)
     @ApiModelProperty(value = "平台响应时间")
     private String responseTime;
-
+    @Excel(name = "商户回复人姓名", width = 30)
     @ApiModelProperty(value = "商户回复人姓名")
     private String shopReplayUserName;
-
+    @Excel(name = "商户回复时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
     @ApiModelProperty(value = "商户回复时间")
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     private Date shopReplayTime;
-
+    @Excel(name = "商户响应时间", width = 30)
     @ApiModelProperty(value = "商户响应时间")
     private String shopResponseTime;
-
+    @Excel(name = "建议标签", width = 30)
     @ApiModelProperty(value = "建议标签")
     private String suggestTags;
-
-
-
-
-
-
-
-
-
 
 
 

--
Gitblit v1.7.1