IScenePlusService.java 741 B

1234567891011121314151617181920212223242526272829
  1. package com.fdkankan.agent.service;
  2. import com.fdkankan.agent.entity.ScenePlus;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.fdkankan.agent.response.CameraTimeVo;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * 场景主表 服务类
  10. * </p>
  11. *
  12. * @author
  13. * @since 2022-11-09
  14. */
  15. public interface IScenePlusService extends IService<ScenePlus> {
  16. ScenePlus getByNum(String sceneNum);
  17. Long getCountByCameraId(Long cameraId);
  18. HashMap<Long, Long> getCountGroupByUserId(List<Long> userIdList,Integer agentId);
  19. List<CameraTimeVo> getMinCreateTimeGroupByCameraId(List<Long> voCameraIds);
  20. HashMap<Long, CameraTimeVo> getMinCreateTimeGroupByCameraIdMap(List<Long> voCameraIds);
  21. }