package com.dsh.course.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.dsh.course.entity.CoursePackageOrderStudent;
|
import com.dsh.course.mapper.CoursePackageOrderStudentMapper;
|
import com.dsh.course.service.ICoursePackageOrderStudentService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2023/11/25 14:06
|
*/
|
@Service
|
public class CoursePackageOrderStudentServiceImpl extends ServiceImpl<CoursePackageOrderStudentMapper, CoursePackageOrderStudent> implements ICoursePackageOrderStudentService {
|
}
|