IScenePlusExtService.java 539 B

1234567891011121314151617181920212223242526
  1. package com.fdkankan.ucenter.service;
  2. import com.fdkankan.ucenter.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-04
  13. */
  14. public interface IScenePlusExtService extends IService<ScenePlusExt> {
  15. ScenePlusExt getByPlusId(Long plusId);
  16. HashMap<Long,ScenePlusExt> getByPlusIds(List<Long> plusIds);
  17. ScenePlusExt getByUnicode(String unicode);
  18. List<ScenePlusExt> getSsObj();
  19. }