TVideoRootMapper.java
801 字节
package com.skua.modules.video.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.skua.modules.video.entity.TVideoRoot;
import com.skua.modules.video.vo.VideoRootVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* 视频信息
* @author 11389
*/
@Repository
public interface TVideoRootMapper extends BaseMapper<TVideoRoot> {
/**
* <pre>
* 根据区域id获取该区域下的监控点
* </pre>
* @param id
* @return
* @author Li Yuanyuan, 2020年4月5日 下午11:06:38
*/
Integer checkVideoCountByRootId(@Param("id") String id);
/**
* 构建视频区域树
* @param departId
* @return
*/
List<VideoRootVO> buildVideoAreaTree(@Param("departId") String departId);
}