From 9b208eb3947358169df8f46472a246eb6ea8ca32 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 18 十二月 2023 17:08:09 +0800 Subject: [PATCH] 工作通知 --- ycl-platform/src/main/java/com/ycl/mapper/video/VideoPointMapper.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/mapper/video/VideoPointMapper.java b/ycl-platform/src/main/java/com/ycl/mapper/video/VideoPointMapper.java index b3d16ee..5e821f1 100644 --- a/ycl-platform/src/main/java/com/ycl/mapper/video/VideoPointMapper.java +++ b/ycl-platform/src/main/java/com/ycl/mapper/video/VideoPointMapper.java @@ -5,6 +5,7 @@ import com.ycl.entity.video.VideoPoint; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ycl.vo.equipment.VideoPointVo; +import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; /** @@ -15,7 +16,11 @@ * @author zhanghua * @since 2022-09-26 */ +@Mapper public interface VideoPointMapper extends BaseMapper<VideoPoint> { - IPage<VideoPointVo> search(Page<VideoPointVo> page, @Param("streetId") Integer streetId, @Param("communityId") Integer communityId); + IPage<VideoPointVo> search(Page<VideoPointVo> page, @Param("streetId") Integer streetId, + @Param("communityId") Integer communityId, @Param("type") Integer type); + + } -- Gitblit v1.8.0