无关风月
2024-10-14 039a33d1bfa6ef041161666bbd120c34086fe7c1
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
package com.xinquan.course.api.domain;
 
import com.xinquan.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.web.bind.annotation.RequestParam;
 
import java.math.BigDecimal;
 
/**
 * @author mitao
 * @date 2024/9/7
 */
@Data
@ApiModel(value = "管理后台查询课程列表DTO")
public class CourseDTO extends BasePage {
    @ApiModelProperty(value = "课程类型1线上2线下")
    private Integer courseType;
    @ApiModelProperty(value = "价格设定 1=免费 2=会员免费 3=单独收费")
    private Integer chargeType;
    @ApiModelProperty(value = "上架状态 1=上架 2=下架")
    private Integer listingStatus;
    @ApiModelProperty(value = "课程分类id")
    private Long cateId;
    @ApiModelProperty(value = "课程/章节标题")
    private String courseTitle;
    @ApiModelProperty(value = "导师名称")
    private String tutor;
}