病灶合并

This commit is contained in:
he
2024-02-20 14:28:52 +08:00
parent 8b86bc6b3f
commit df187bed58
3 changed files with 44 additions and 44 deletions
@@ -207,6 +207,24 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public string MarkTool { get; set; } = string.Empty;
/// <summary>
/// 融向的病灶
/// </summary>
public string MeltingInToLesion { get; set; } = "[]";
public List<Guid> MeltingInToLesionList { get {
try
{
return JsonConvert.DeserializeObject<List<Guid>>(this.MeltingInToLesion);
}
catch (Exception)
{
return new List<Guid>();
}
} }
[JsonIgnore]
[ForeignKey("VisitTaskId")]