/***
 * 钟是志 权限配置
 * 2020年5月8日 16:57:11
 * 这个只需要 新增 删除 详情 导入 导出 编辑
 * */
import React from 'react';
import GetIdByPath from './GetIdByPath';

const ExportAndImportAndDetail = (props) => {
  const Authority = {
    add: true, // 新增
    delete: true, // 删除
    edit: true, // 编辑
    auditDetail: false, // 审核详情
    exportUtil: true, // 导出
    importUtil: true, // 导入
  };
  return <GetIdByPath {...props}
                      Authority={Authority}
  />;
};

export default ExportAndImportAndDetail;