| | |
| | | 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; |
| | | |
| | |
| | | |
| | | @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; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |