zhanghua
2024-12-20 1f45c25ea725445d7e78e8d5da6e72150f35f2eb
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
27
28
package com.ycl.service.video.impl;
 
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.video.VideoPoint;
import com.ycl.vo.equipment.VideoPointVo;
import org.springframework.stereotype.Component;
 
import java.util.List;
 
/**
 * <p>
 * 点位管理 服务类
 * </p>
 *
 * @author zhanghua
 * @since 2022-09-26
 */
public interface IVideoPointService extends IService<VideoPoint> {
 
    IPage<VideoPointVo> getList(Integer streetId, Integer communityId, Integer type, Integer current, Integer size);
 
    VideoPoint getByCode(String code);
 
    VideoPoint getByChannelId(Integer channelId);
}