123456789101112131415161718192021222324 |
- package com.fdkankan.ucenter.service;
- import com.fdkankan.ucenter.entity.Scene;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.util.List;
- /**
- * <p>
- * 场景表 服务类
- * </p>
- *
- * @author
- * @since 2022-07-04
- */
- public interface ISceneService extends IService<Scene> {
- Integer getCountByUserId(Long userId);
- void bindOrUnCamera(List<Long> cameraIds, Long id);
- List<Scene> getListByNums(List<String> numList);
- }
|