DataAuthRelationMapper.java 431 B

123456789101112131415161718
  1. package com.xjrsoft.module.authority.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.xjrsoft.module.authority.entity.DataAuthRelation;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * <p>
  7. * 数据权限 对象类型关联表 Mapper 接口
  8. * </p>
  9. *
  10. * @author tzx
  11. * @since 2023-02-27
  12. */
  13. @Mapper
  14. public interface DataAuthRelationMapper extends BaseMapper<DataAuthRelation> {
  15. }