zhanghua
2023-12-12 bc2da7908a227c09e5cc7b6d8dab3e9c94b784a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ycl.mapper.video;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
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;
 
/**
 * <p>
 * 点位管理 Mapper 接口
 * </p>
 *
 * @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, @Param("type") Integer type);
 
 
}