ISceneService.java 463 B

123456789101112131415161718192021222324
  1. package com.fdkankan.ucenter.service;
  2. import com.fdkankan.ucenter.entity.Scene;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import java.util.List;
  5. /**
  6. * <p>
  7. * 场景表 服务类
  8. * </p>
  9. *
  10. * @author
  11. * @since 2022-07-04
  12. */
  13. public interface ISceneService extends IService<Scene> {
  14. Integer getCountByUserId(Long userId);
  15. void bindOrUnCamera(List<Long> cameraIds, Long id);
  16. List<Scene> getListByNums(List<String> numList);
  17. }