123456789101112131415161718 |
- package com.xjrsoft.module.authority.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.xjrsoft.module.authority.entity.DataAuthConfig;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * 数据权限自定义配置详情表 Mapper 接口
- * </p>
- *
- * @author tzx
- * @since 2023-02-27
- */
- @Mapper
- public interface DataAuthConfigMapper extends BaseMapper<DataAuthConfig> {
- }
|