Uat_Study
he 2022-09-22 14:42:23 +08:00
parent 3a1d133a7e
commit 37863af14b
3 changed files with 8 additions and 1 deletions

View File

@ -90,6 +90,8 @@ namespace IRaCIS.Core.Application.ViewModel
public OrganType OrganType { get; set; }
public DateTime CreateTime { get; set; }
public Guid CreateUserId { get; set; }
public bool CriterionNidus { get; set; }
}
public class BatchAddTrialOrganInDto
{

View File

@ -328,7 +328,7 @@ namespace IRaCIS.Core.Application.Service
LesionType = x.LesionType,
OriginalId = x.Id,
OrganType=x.OrganType,
IsSystemCriterion=false,
}).ToListAsync();
criterionNidusList.ForEach(x => x.Id = NewId.NextGuid());

View File

@ -43,6 +43,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public Guid CreateUserId { get; set; }
/// <summary>
/// 是否是系统标准
/// </summary>
public bool IsSystemCriterion { get; set; }
}