feat: 🎸 修复查询课程列表字段名错误
This commit is contained in:
parent
44b025f686
commit
b4c0be4051
@ -22,7 +22,7 @@ import lombok.experimental.Accessors;
|
|||||||
/**
|
/**
|
||||||
* @Description: 课程
|
* @Description: 课程
|
||||||
* @Author: jeecg-boot
|
* @Author: jeecg-boot
|
||||||
* @Date: 2025-09-12
|
* @Date: 2025-09-13
|
||||||
* @Version: V1.0
|
* @Version: V1.0
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@ -121,9 +121,9 @@ public class AiolCourse implements Serializable {
|
|||||||
@Excel(name = "常见问题", width = 15)
|
@Excel(name = "常见问题", width = 15)
|
||||||
@Schema(description = "常见问题")
|
@Schema(description = "常见问题")
|
||||||
private java.lang.String question;
|
private java.lang.String question;
|
||||||
/**是否ai伴学模式*/
|
/**是否ai伴学模式1*/
|
||||||
@Excel(name = "是否ai伴学模式", width = 15)
|
@Excel(name = "是否ai伴学模式1", width = 15)
|
||||||
@Schema(description = "是否ai伴学模式")
|
@Schema(description = "是否ai伴学模式1")
|
||||||
private java.lang.Integer izAi;
|
private java.lang.Integer izAi;
|
||||||
/**离开页面是否暂停视频播放*/
|
/**离开页面是否暂停视频播放*/
|
||||||
@Excel(name = "离开页面是否暂停视频播放", width = 15)
|
@Excel(name = "离开页面是否暂停视频播放", width = 15)
|
||||||
|
@ -261,7 +261,7 @@ public class AiolCourseServiceImpl extends ServiceImpl<AiolCourseMapper, AiolCou
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 只查询已上架的课程
|
// 只查询已上架的课程
|
||||||
queryWrapper.eq("publishStatus", 1);
|
queryWrapper.eq("publish_status", 1);
|
||||||
|
|
||||||
List<AiolCourse> courseList = courseMapper.selectList(queryWrapper);
|
List<AiolCourse> courseList = courseMapper.selectList(queryWrapper);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user