package com.hollywood.manage.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.hollywood.common.model.TShortPlayVideo;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* <p>
|
* 短剧视频 Mapper 接口
|
* </p>
|
*
|
* @author xiaochen
|
* @since 2024-02-29
|
*/
|
@Mapper
|
public interface TShortPlayVideoMapper extends BaseMapper<TShortPlayVideo> {
|
|
/**
|
* 删除短剧视频
|
* @param shortPlayId
|
* @return
|
*/
|
int removeByShortPlayId(@Param("shortPlayId") Long shortPlayId);
|
}
|