package com.xinquan.meditation.domain.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@ApiModel(value = "提问管理-导出")
|
public class QuestionExport implements Serializable {
|
|
@Excel(name = "关联疗愈",width = 30)
|
private String name;
|
@Excel(name = "用户昵称",width = 30)
|
private String userName;
|
@Excel(name = "用户手机号",width = 30)
|
private String cellphone;
|
@Excel(name = "提问内容",width = 30)
|
private String content;
|
@Excel(name = "提问时间",width = 30)
|
private String createTime;
|
@Excel(name = "回复内容",width = 30)
|
private String replayContent;
|
@Excel(name = "回复时间",width = 30)
|
private String replayTime;
|
@Excel(name = "点赞数",width = 30)
|
private String likeCount;
|
@Excel(name = "是否显示",width = 30,replace = {"是_1","否_2"})
|
private String showFlag;
|
}
|