CDISC_Reading_Export
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-01-07 10:34:19 +08:00
parent 1a64c07c8e
commit 83749e15cb
6 changed files with 535 additions and 110 deletions
@@ -302,18 +302,20 @@ namespace IRaCIS.Core.Application.Contracts
public string LatestReplyUserName { get; set; } = String.Empty;
public string Content { get; set; } = string.Empty;
public string ContentReplaced {
public string ContentReplaced
{
get {
var msg= Content.Replace("<div style='margin-left:20px'>", "").Replace("</div>", "");
get
{
var msg = Content.Replace("<div style='margin-left:20px'>", "").Replace("</div>", "");
string[] substrings = msg.Split(new string[] { "<br>", "<br/>" }, StringSplitOptions.None);
return string.Join("\n\n", substrings);
}
}
}
[DictionaryTranslateAttribute("ChallengeIsClosed")]
public bool IsClosed { get; set; }
@@ -1220,6 +1222,10 @@ namespace IRaCIS.Core.Application.Contracts
#region CDISC_阅片结果表
public string TrialCode { get; set; }
public string TrialSiteSubjectCode => TrialSiteCode + SubjectCode;
//最晚拍片日期
public DateTime? LatestScanDate { get; set; }