Files
FrameTour-BE/src/main/java/com/ycwl/basic/mapper/pc/VideoMapper.java

29 lines
830 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ycwl.basic.mapper.pc;
import com.ycwl.basic.model.pc.template.entity.TemplateEntity;
import com.ycwl.basic.model.pc.template.req.TemplateReqQuery;
import com.ycwl.basic.model.pc.template.resp.TemplateRespVO;
import com.ycwl.basic.model.pc.video.entity.VideoEntity;
import com.ycwl.basic.model.pc.video.req.VideoReqQuery;
import com.ycwl.basic.model.pc.video.resp.VideoRespVO;
import lombok.NonNull;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* @Authorlongbinbin
* @Date2024/12/2 15:27
* 成片
*/
@Mapper
public interface VideoMapper {
List<VideoRespVO> list(VideoReqQuery videoReqQuery);
VideoRespVO getById(Long id);
int add(VideoEntity task);
int deleteById(Long id);
int update(VideoEntity task);
VideoEntity findByTaskId(@NonNull Long taskId);
}