12345678910111213141516171819202122232425262728293031323334353637 |
- 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;
- /**
- * <p>
- * 相机子表 服务类
- * </p>
- *
- * @author
- * @since 2022-12-30
- */
- public interface ICameraDetailService extends MPJBaseService<CameraDetail> {
- void updateCompanyId(Long id);
- int findCountByCompanyId(Long id);
- List<ResponseCamera> selectCompanyDevice(Long id);
- void updateOwnByCameraId(Integer cameraId, Integer own);
- void unbind(Long cameraId);
- void bind(List<Long> cameraIds, Integer companyId);
- List<CameraDetail> getListByCompanyId(Long companyId);
- List<CameraDetail> getByUserName(String userName);
- CameraDetail getByCameraId(Integer cameraId);
- }
|