- package com.xjrsoft.module.app.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.xjrsoft.module.app.entity.BaseAppFunction;
- /**
- * @title: APP端功能模块管理
- * @Author fanxp
- * @Date: 2023-11-07
- * @Version 1.0
- */
- public interface IBaseAppFunctionService extends IService<BaseAppFunction> {
- }
|