package com.xinquan.meditation.domain.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@ApiModel(value = "冥想音频管理-导出")
|
public class MeditationExport implements Serializable {
|
|
@Excel(name = "关联疗愈",width = 30)
|
private String name;
|
@Excel(name = "所属分类",width = 30)
|
private String categoryName;
|
@Excel(name = "描述文案",width = 30)
|
private String detailDescription;
|
@Excel(name = "价格",width = 30)
|
private String generalPrice;
|
@Excel(name = "上架状态",width = 30,replace = {"上架_1","下架_2"})
|
private String listingStatus;
|
@Excel(name = "学习人数",width = 30)
|
private String realLearnedNum;
|
@Excel(name = "收藏人数",width = 30)
|
private String collectCount;
|
@Excel(name = "添加时间",width = 30)
|
private String createTime;
|
|
}
|