123456789101112131415161718 |
- package com.xjrsoft.module.authority.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.xjrsoft.module.authority.entity.DataAuthRelation;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * 数据权限 对象类型关联表 Mapper 接口
- * </p>
- *
- * @author tzx
- * @since 2023-02-27
- */
- @Mapper
- public interface DataAuthRelationMapper extends BaseMapper<DataAuthRelation> {
- }
|