mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-07-24 02:09:35 +08:00
21 lines
573 B
Java
21 lines
573 B
Java
package xyz.playedu.api.service;
|
|
|
|
import xyz.playedu.api.domain.ResourceVideo;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author tengteng
|
|
* @description 针对表【resource_videos】的数据库操作Service
|
|
* @createDate 2023-03-02 15:13:03
|
|
*/
|
|
public interface ResourceVideoService extends IService<ResourceVideo> {
|
|
|
|
void create(Integer resourceId, Integer duration, String poster);
|
|
|
|
void removeByRid(Integer resourceId);
|
|
|
|
List<ResourceVideo> chunksByRids(List<Integer> resourceIds);
|
|
}
|