BaseAppFunctionMapper.java 377 B

12345678910111213141516
  1. package com.xjrsoft.module.app.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.xjrsoft.module.app.entity.BaseAppFunction;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @title: APP端功能模块管理
  7. * @Author fanxp
  8. * @Date: 2023-11-07
  9. * @Version 1.0
  10. */
  11. @Mapper
  12. public interface BaseAppFunctionMapper extends BaseMapper<BaseAppFunction> {
  13. }