- package com.xjrsoft.module.app.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.xjrsoft.module.app.entity.BaseAppFunction;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: APP端功能模块管理
- * @Author fanxp
- * @Date: 2023-11-07
- * @Version 1.0
- */
- @Mapper
- public interface BaseAppFunctionMapper extends BaseMapper<BaseAppFunction> {
- }
|