Revert "修改维护 文档的稽查"

This reverts commit 0b707117c6.
Test_IRC_Net8
he 2025-08-15 11:24:46 +08:00
parent 0b707117c6
commit 56165f5037
3 changed files with 0 additions and 6 deletions

View File

@ -35,8 +35,6 @@ namespace IRaCIS.Core.Application.Contracts
public bool OffLine { get; set; } public bool OffLine { get; set; }
public Guid SystemDocumentId { get; set; } public Guid SystemDocumentId { get; set; }
public DateTime UpdateTime { get; set; }
} }
public class SystemDocumentAttachmentQuery : PageInput public class SystemDocumentAttachmentQuery : PageInput
@ -399,8 +397,6 @@ namespace IRaCIS.Core.Application.Contracts
public bool OffLine { get; set; } public bool OffLine { get; set; }
public Guid TrialDocumentId { get; set; } public Guid TrialDocumentId { get; set; }
public DateTime UpdateTime { get; set; }
} }
public class TrialDocumentAttachmentQuery : PageInput public class TrialDocumentAttachmentQuery : PageInput

View File

@ -60,7 +60,6 @@ namespace IRaCIS.Core.Application.Services
addOrEditSystemDocumentAttachment.UpdateTime = DateTime.Now;
var entity = await _systemDocumentAttachmentRepository.InsertOrUpdateAsync(addOrEditSystemDocumentAttachment, true); var entity = await _systemDocumentAttachmentRepository.InsertOrUpdateAsync(addOrEditSystemDocumentAttachment, true);
return ResponseOutput.Ok(entity.Id.ToString()); return ResponseOutput.Ok(entity.Id.ToString());

View File

@ -72,7 +72,6 @@ namespace IRaCIS.Core.Application.Services
{ {
// 在此处拷贝automapper 映射 // 在此处拷贝automapper 映射
addOrEditTrialDocumentAttachment.UpdateTime = DateTime.Now;
var entity = await _trialDocumentAttachmentRepository.InsertOrUpdateAsync(addOrEditTrialDocumentAttachment, true); var entity = await _trialDocumentAttachmentRepository.InsertOrUpdateAsync(addOrEditTrialDocumentAttachment, true);
return ResponseOutput.Ok(entity.Id.ToString()); return ResponseOutput.Ok(entity.Id.ToString());