123456789101112131415161718 |
- package com.fdkankan.scene.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.fdkankan.scene.entity.SceneCooperation;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author dengsixing
- * @since 2021-12-23
- */
- public interface ISceneCooperationService extends IService<SceneCooperation> {
- SceneCooperation getByNum(String num);
- }
|