12345678910111213141516171819 |
- package com.fdkankan.manage.service;
- import com.fdkankan.manage.entity.SceneCooperation;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2022-06-17
- */
- public interface ISceneCooperationService extends IService<SceneCooperation> {
- void deleteCooperation(Long cameraId);
- void delByNum(String num);
- }
|