lisy
2023-07-06 aa0413f95fffba39cabcc78d147595da96b10b32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dsh.course.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.course.entity.PostCourseVideo;
 
/**
 * <p>
 * 课后视频发布记录 服务类
 * </p>
 *
 * @author jqs
 * @since 2023-07-05
 */
public interface PostCourseVideoService extends IService<PostCourseVideo> {
 
}