项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseRepository/RepositoryBase.cs
@@ -625,6 +625,11 @@ return await _db.InsertNav(Entity).IncludesAllFirstLayer().ExecuteCommandAsync(); } public async Task<bool> AddDataNavAsync(List<TEntity> Entity) { return await _db.InsertNav(Entity).IncludesAllFirstLayer().ExecuteCommandAsync(); } public Task<int> AddDataAsync(List<TEntity> listEntity) { IInsertable<TEntity> insert = _db.Insertable(listEntity);