添加“video”相关CRUD代码

This commit is contained in:
longbinbin
2024-12-02 15:47:09 +08:00
parent 8b89ba9505
commit 5161b22094
6 changed files with 221 additions and 4 deletions

View File

@ -0,0 +1,25 @@
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 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);
}