From 8423b00becad2c5c75238d7d4c5fb4bda6507850 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Tue, 11 Nov 2025 10:58:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E8=A1=A8=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Common/Export/CDISCExportBaseModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Common/Export/CDISCExportBaseModel.cs b/IRaCIS.Core.Application/Service/Common/Export/CDISCExportBaseModel.cs index 073ed414f..3bf4379c6 100644 --- a/IRaCIS.Core.Application/Service/Common/Export/CDISCExportBaseModel.cs +++ b/IRaCIS.Core.Application/Service/Common/Export/CDISCExportBaseModel.cs @@ -210,9 +210,9 @@ public class TU_TR_RSBaseModel public string IsJudgeSelectStr => IsJudgeSelect == true ? "Y" : ""; - public bool IsTargetPD = false; + public bool IsTargetPD { get; set; } = false; - public bool IsOverallResponsePD = false; + public bool IsOverallResponsePD { get; set; } = false; //TR表 靶病灶PD了,访视层级的都是最早拍片日期 RS表 整体肿瘤评估PD了,那么疗效评估的拍片日期都给最早的 public bool IsPD => Domain == "TR" ? IsTargetPD : IsOverallResponsePD;