添加的功能:小程序端用户查看当前课程推广码

修改的bug: Web端管理员根据课程id分页查询课程章节
This commit is contained in:
2025-06-24 22:34:58 +08:00
parent ad6eb74170
commit 3d8fd5591e
7 changed files with 181 additions and 5 deletions

View File

@ -0,0 +1,18 @@
package com.greenorange.promotion.mapper;
import com.greenorange.promotion.model.entity.CourseQrcodeApply;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author 35880
* @description 针对表【course_qrcode_apply(课程推广码申请表)】的数据库操作Mapper
* @createDate 2025-06-24 22:10:39
* @Entity com.greenorange.promotion.model.entity.CourseQrcodeApply
*/
public interface CourseQrcodeApplyMapper extends BaseMapper<CourseQrcodeApply> {
}