package com.newfiber.api.pc.service; import com.baomidou.mybatisplus.service.IService; import com.github.pagehelper.PageInfo; import com.newfiber.api.pc.model.entity.CameraGroupRelation; import java.util.List; /** * cameraGroupRelation 业务层 * * @author luzhan * @date 2022-04-06 */ public interface CameraGroupRelationService extends IService<CameraGroupRelation> { /** * cameraGroupRelation 分页列表 * @param searchStr * @param pageNo * @param pageSize * @return */ PageInfo<CameraGroupRelation> listForPage(String searchStr, Integer pageNo, Integer pageSize); /** * 通过groupIds删除数据 * @param groupIds * @return */ int deleteByIds(List<Long> groupIds); }