Compare commits

..

No commits in common. "c44c37b76ba36336fa603e58893b069895b937f6" and "92c0612a90bd04bb76387bf9b94375ea26a252f9" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -96,12 +96,11 @@ namespace IRaCIS.Core.Application.Services
[HttpPost]
public async Task<IResponseOutput> PublishTrialDocument(PublishTrialDocumentInDto inDto)
{
await _trialDocumentRepository.UpdatePartialFromQueryAsync(x => inDto.Ids.Contains(x.Id), x => new TrialDocument()
await _trialDocumentRepository.BatchUpdateNoTrackingAsync(x => inDto.Ids.Contains(x.Id), x => new TrialDocument()
{
IsPublish = true,
IsDeleted = false,
});
await _trialDocumentRepository.SaveChangesAsync();
Console.WriteLine("开始 发布项目文档");
Task.Run(async () =>