goupan
2024-04-03 5506e9a45e717ffcb67ec313b5a4e8206d9b3a39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.stylefeng.guns.modular.business.service.impl;
 
import cn.stylefeng.guns.modular.business.entity.CouserChapterLearningRate;
import cn.stylefeng.guns.modular.business.mapper.CouserChapterLearningRateMapper;
import cn.stylefeng.guns.modular.business.service.ICouserChapterLearningRateService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 课程章节学习进度 服务实现类
 * </p>
 *
 * @author guohongjin
 * @since 2024-01-02
 */
@Service
public class CouserChapterLearningRateServiceImpl extends ServiceImpl<CouserChapterLearningRateMapper, CouserChapterLearningRate> implements ICouserChapterLearningRateService {
 
}