| | |
| | | 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; |
| | | |
| | |
| | | */ |
| | | public interface IVideoPointService extends IService<VideoPoint> { |
| | | |
| | | IPage<VideoPointVo> getList(Integer streetId, Integer communityId, Integer current, Integer size); |
| | | IPage<VideoPointVo> getList(Integer streetId, Integer communityId, Integer type, Integer current, Integer size); |
| | | |
| | | VideoPoint getByCode(String code); |
| | | |
| | | VideoPoint getByChannelId(Integer channelId); |
| | | } |