From 141d67088bbb064b64f429fa75c2127de6f035ea Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Tue, 28 Jun 2022 14:36:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Allocation/DTO/VisitTaskViewModel.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Allocation/DTO/VisitTaskViewModel.cs b/IRaCIS.Core.Application/Service/Allocation/DTO/VisitTaskViewModel.cs index b346f0b39..dd718c068 100644 --- a/IRaCIS.Core.Application/Service/Allocation/DTO/VisitTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Allocation/DTO/VisitTaskViewModel.cs @@ -472,12 +472,16 @@ namespace IRaCIS.Core.Application.ViewModel public class ConfirmReReadingDTO { + [NotDefault] public Guid Id { get; set; } //重阅原始任务Id 重阅会产生新的任务 + + [NotDefault] public Guid OriginalReReadingTaskId { get; set; } //重阅申请 产生的新任务Id + [NotDefault] public Guid NewReReadingTaskId { get; set; } }