using System.Collections.Generic;
using System.Threading.Tasks;
using Volo.Abp.Uow;
namespace Win.Sfs.Shared.ApplicationBase
{
///
/// 导入接口
///
///
public interface IImportAppService : IUnitOfWorkEnabled
{
///
/// 批量导入实体列表
///
///
/// 以ID为依据,数据库中找不到ID的实体会新增,已有ID的实体会修改
///
/// 实体列表
/// 是否导入成功
Task ImportAsync(List entities);
}
}