package com.dsh.course.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.dsh.course.entity.CoursePackageStudent;
|
import com.dsh.course.mapper.CoursePackageStudentMapper;
|
import com.dsh.course.service.CoursePackageStudentService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 学员上课记录 服务实现类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-06-30
|
*/
|
@Service
|
public class CoursePackageStudentServiceImpl extends ServiceImpl<CoursePackageStudentMapper, CoursePackageStudent> implements CoursePackageStudentService {
|
|
|
}
|