feat: 🎸 修复查询课程列表字段名错误

This commit is contained in:
GoCo 2025-09-13 18:22:44 +08:00
parent 44b025f686
commit b4c0be4051
2 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,7 @@ import lombok.experimental.Accessors;
/**
* @Description: 课程
* @Author: jeecg-boot
* @Date: 2025-09-12
* @Date: 2025-09-13
* @Version: V1.0
*/
@Data
@ -121,9 +121,9 @@ public class AiolCourse implements Serializable {
@Excel(name = "常见问题", width = 15)
@Schema(description = "常见问题")
private java.lang.String question;
/**是否ai伴学模式*/
@Excel(name = "是否ai伴学模式", width = 15)
@Schema(description = "是否ai伴学模式")
/**是否ai伴学模式1*/
@Excel(name = "是否ai伴学模式1", width = 15)
@Schema(description = "是否ai伴学模式1")
private java.lang.Integer izAi;
/**离开页面是否暂停视频播放*/
@Excel(name = "离开页面是否暂停视频播放", width = 15)

View File

@ -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);