puzhibing
2023-07-06 d462cdb62cc5a55c5a3e94899dab7f5c035b8f23
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> {
 
}