From a73a5dd6687dd6231635b3272096e08cddb6af27 Mon Sep 17 00:00:00 2001
From: jiangqs <jiangqs>
Date: 星期五, 30 六月 2023 13:56:15 +0800
Subject: [PATCH] 联调bug和统计完善
---
ruoyi-modules/ruoyi-member/src/main/java/com/ruoyi/member/domain/vo/MgtMemberSuggestPageVo.java | 46 +++++++++++++++++++---------------------------
1 files changed, 19 insertions(+), 27 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 59ac840..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 Integer suggestType;
-
+ 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