| 1234567891011121314151617 |
- package com.fdkankan.fusion.service;
- import com.fdkankan.fusion.entity.Camera;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 相机主表 服务类
- * </p>
- *
- * @author
- * @since 2024-01-09
- */
- public interface ICameraService extends IService<Camera> {
- Camera getByCameraId(Long cameraId);
- }
|