| 123456789101112131415161718 |
- package com.fdkankan.task.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.fdkankan.task.entity.ScenePlusExt;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2022-03-16
- */
- public interface IScenePlusExtService extends IService<ScenePlusExt> {
- ScenePlusExt getScenePlusExtByPlusId(long plusId);
- }
|