| | |
| | | using FlexJobApi.Core; |
| | | using Furion; |
| | | using Furion.DatabaseAccessor; |
| | | using Furion.FriendlyException; |
| | | using Furion.HttpRemote; |
| | | using Mapster; |
| | | using MediatR; |
| | | using Microsoft.EntityFrameworkCore; |
| | | using MiniExcelLibs; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | |
| | | { |
| | | private readonly IRepository<EnterpriseEmployee> rep = rep; |
| | | |
| | | public Task<int> Handle(ImportEnterpriseEmployeesCommand request, CancellationToken cancellationToken) |
| | | /// <summary> |
| | | /// 导入灵工信息 |
| | | /// </summary> |
| | | /// <param name="request"></param> |
| | | /// <param name="cancellationToken"></param> |
| | | /// <returns></returns> |
| | | public async Task<int> Handle(ImportEnterpriseEmployeesCommand request, CancellationToken cancellationToken) |
| | | { |
| | | var models = await request.ExcelUrl.ImportExcelFromOSS<ImportEnterpriseEmployeesCommandModel>(); |
| | | Console.WriteLine(); |
| | | throw new NotImplementedException(); |
| | | } |
| | | |