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 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);
|
}
|