package com.dsh.course.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.dsh.course.entity.CoursePackageScheduling;
|
import com.dsh.course.mapper.CoursePackageSchedulingMapper;
|
import com.dsh.course.service.CoursePackageSchedulingService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 课包排课 服务实现类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-06-30
|
*/
|
@Service
|
public class CoursePackageSchedulingServiceImpl extends ServiceImpl<CoursePackageSchedulingMapper, CoursePackageScheduling> implements CoursePackageSchedulingService {
|
|
|
}
|