123456789101112131415161718192021222324 |
- package com.fdkankan.app.service;
- import com.fdkankan.app.entity.ScenePlusExt;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.util.HashMap;
- import java.util.List;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2022-07-19
- */
- public interface IScenePlusExtService extends IService<ScenePlusExt> {
- ScenePlusExt getByPlusId(Long plusId);
- ScenePlusExt getByUnicode(String unicode);
- HashMap<Long, ScenePlusExt> getByPlusIds(List<Long> plusIds);
- }
|