DataAuthConfigMapper.java 427 B

123456789101112131415161718
  1. package com.xjrsoft.module.authority.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.xjrsoft.module.authority.entity.DataAuthConfig;
  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 DataAuthConfigMapper extends BaseMapper<DataAuthConfig> {
  15. }