无关风月
2024-10-14 039a33d1bfa6ef041161666bbd120c34086fe7c1
xinquan-api/xinquan-api-course/src/main/java/com/xinquan/course/api/domain/Course.java
@@ -48,6 +48,10 @@
    @TableField("course_title")
    private String courseTitle;
    @ApiModelProperty(value = "uid")
    @TableField(exist = false)
    private String uid;
    @ApiModelProperty(value = "课程描述")
    @TableField("description")
    private String description;
@@ -115,5 +119,14 @@
    @ApiModelProperty(value = "学习人数")
    @TableField(exist = false)
    private Integer count;
    @ApiModelProperty(value = "章节数量")
    @TableField(exist = false)
    private Long courseChapterCount;
    @ApiModelProperty(value = "收藏数量")
    @TableField(exist = false)
    private Long collectCount;
   @ApiModelProperty(value = "课程分类名称")
    @TableField(exist = false)
    private String categoryName;
}