package com.xinquan.course.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 CourseOffExport implements Serializable {
|
|
@Excel(name = "课程标题",width = 30)
|
private String name;
|
@Excel(name = "导师",width = 30)
|
private String tutor;
|
@Excel(name = "课程地址",width = 30)
|
private String address;
|
@Excel(name = "上架状态",width = 30,replace = {"上架_1","下架_2"})
|
private String listingStatus;
|
@Excel(name = "收藏数",width = 30)
|
private String collectCount;
|
@Excel(name = "添加时间",width = 30)
|
private String createTime;
|
|
}
|