package com.artfess.rescue.base.dao;

import com.artfess.rescue.base.model.BizOrgReflection;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import java.util.List;

/**
 * 组织映射表 Mapper 接口
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 系统管理员
 * @since 2025-03-28
 */
public interface BizOrgReflectionDao extends BaseMapper<BizOrgReflection> {
 List<BizOrgReflection> getRoad();
}
