puzhibing
2023-11-25 53e7558400dcacecdce70e39ebfe1727740f9296
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 {
}