| 123456789101112131415161718 |
- package com.fdkankan.scene.service;
- import com.fdkankan.scene.entity.Camera;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 相机主表 服务类
- * </p>
- *
- * @author
- * @since 2022-07-18
- */
- public interface ICameraService extends IService<Camera> {
- Camera findByChildName(String childName);
- }
|