package com.fdkankan.manage_jp.service; import com.fdkankan.manage_jp.entity.CameraDetail; import com.baomidou.mybatisplus.extension.service.IService; import com.fdkankan.manage_jp.vo.response.ResponseCamera; import com.github.yulichang.base.MPJBaseService; import java.util.List; /** *

* 相机子表 服务类 *

* * @author * @since 2022-12-30 */ public interface ICameraDetailService extends MPJBaseService { void updateCompanyId(Long id); int findCountByCompanyId(Long id); List selectCompanyDevice(Long id); void updateOwnByCameraId(Integer cameraId, Integer own); void unbind(Long cameraId); void bind(List cameraIds, Integer companyId); List getListByCompanyId(Long companyId); List getByUserName(String userName); CameraDetail getByCameraId(Integer cameraId); }