Skip to content

Commit

Permalink
fix(exporter): 修复命名空间错误
Browse files Browse the repository at this point in the history
  • Loading branch information
colinin committed Oct 9, 2024
1 parent 815de8a commit 38f6d33
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Microsoft.Extensions.DependencyInjection.Extensions;
using Volo.Abp.Modularity;

namespace LINGYUN.Abp.Exporter.MiniExcel;
namespace LINGYUN.Abp.Exporter.MagicodesIE.Excel;

[DependsOn(typeof(AbpExporterCoreModule))]
public class AbpExporterMagicodesIEExcelModule : AbpModule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System;
using System.Collections.Generic;

namespace LINGYUN.Abp.Exporter;
namespace LINGYUN.Abp.Exporter.MagicodesIE.Excel;
public class AbpExporterMagicodesIEExcelOptions
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using System.IO;

namespace LINGYUN.Abp.Exporter;
namespace LINGYUN.Abp.Exporter.MagicodesIE.Excel;
public class AbpImportHelper<T> : ImportHelper<T> where T : class, new()
{
public AbpImportHelper(string? filePath = null, string? labelingFilePath = null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;
using Volo.Abp.DependencyInjection;

namespace LINGYUN.Abp.Exporter;
namespace LINGYUN.Abp.Exporter.MagicodesIE.Excel;
public class MagicodesIEExcelExporterProvider : IExporterProvider, ITransientDependency
{
private readonly AbpExporterMagicodesIEExcelOptions _options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using Volo.Abp.DependencyInjection;
using Volo.Abp.Json;

namespace LINGYUN.Abp.Exporter;
namespace LINGYUN.Abp.Exporter.MagicodesIE.Excel;

public class MagicodesIEExcelImporterProvider : IImporterProvider, ITransientDependency
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System;
using System.Collections.Generic;

namespace LINGYUN.Abp.Exporter;
namespace LINGYUN.Abp.Exporter.MiniExcel;
public class AbpExporterMiniExcelOptions
{
public IDictionary<Type, Action<OpenXmlConfiguration>> ExportSettingMapping { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Threading.Tasks;
using Volo.Abp.DependencyInjection;

namespace LINGYUN.Abp.Exporter;
namespace LINGYUN.Abp.Exporter.MiniExcel;
public class MiniExcelExporterProvider : IExporterProvider, ITransientDependency
{
private readonly AbpExporterMiniExcelOptions _options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Threading.Tasks;
using Volo.Abp.DependencyInjection;

namespace LINGYUN.Abp.Exporter;
namespace LINGYUN.Abp.Exporter.MiniExcel;
public class MiniExcelImporterProvider : IImporterProvider, ITransientDependency
{
private readonly AbpExporterMiniExcelOptions _options;
Expand Down

0 comments on commit 38f6d33

Please sign in to comment.