融合问题修改

This commit is contained in:
he
2024-02-23 13:08:10 +08:00
parent a55ec01992
commit c743335d13
3 changed files with 11 additions and 38 deletions
@@ -207,29 +207,10 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public string MarkTool { get; set; } = string.Empty;
/// <summary>
/// 融向的病灶
/// </summary>
public string MeltingInToLesion { get; set; } = "[]";
/// <summary>
/// 融向病灶的名称
/// </summary>
public string MeltingInToLesionMarks { get; set; } = string.Empty;
public List<Guid> MeltingInToLesionList { get {
try
{
return JsonConvert.DeserializeObject<List<Guid>>(this.MeltingInToLesion);
}
catch (Exception)
{
return new List<Guid>();
}
} }
public string MergeLesionMark { get; set; } = string.Empty;
[JsonIgnore]
[ForeignKey("VisitTaskId")]