IScenePlusExtService.java 496 B

123456789101112131415161718192021222324
  1. package com.fdkankan.app.service;
  2. import com.fdkankan.app.entity.ScenePlusExt;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import java.util.HashMap;
  5. import java.util.List;
  6. /**
  7. * <p>
  8. * 服务类
  9. * </p>
  10. *
  11. * @author
  12. * @since 2022-07-19
  13. */
  14. public interface IScenePlusExtService extends IService<ScenePlusExt> {
  15. ScenePlusExt getByPlusId(Long plusId);
  16. ScenePlusExt getByUnicode(String unicode);
  17. HashMap<Long, ScenePlusExt> getByPlusIds(List<Long> plusIds);
  18. }