无关风月
2024-11-04 64f7ccb9ef8b5a0618e65cddc14b981c1f108ba3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 CourseExport implements Serializable {
 
    @Excel(name = "课程标题",width = 30)
    private String name;
    @Excel(name = "课程分类",width = 30)
    private String categoryName;
    @Excel(name = "导师",width = 30)
    private String tutor;
    @Excel(name = "价格",width = 30)
    private String generalPrice;
    @Excel(name = "章节数",width = 30)
    private String courseChapterCount;
    @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;
 
}