Compare commits

...

2 Commits

Author SHA1 Message Date
hang eef764dd90 Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-11-11 10:58:09 +08:00
hang 8423b00bec 修改导表报错 2025-11-11 10:58:07 +08:00
1 changed files with 2 additions and 2 deletions

View File

@ -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;