ISceneCooperationService.java 358 B

123456789101112131415161718
  1. package com.fdkankan.scene.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.fdkankan.scene.entity.SceneCooperation;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author dengsixing
  10. * @since 2021-12-23
  11. */
  12. public interface ISceneCooperationService extends IService<SceneCooperation> {
  13. SceneCooperation getByNum(String num);
  14. }