Uat_Study
he 2022-03-30 11:51:03 +08:00
parent 48e273d4af
commit 251605b23b
2 changed files with 30 additions and 2 deletions

View File

@ -246,7 +246,7 @@ namespace IRaCIS.Core.Application.Service.Inspection
add.SignId = signId;
add.IP = _userInfo.IP;
await _repository.AddAsync(add);
if (addDto.OptType.ToLower() == "Add".ToLower()|| Statusdata!=null)
if (addDto.OptType.ToLower() == "Add".ToLower()&& Statusdata!=null)
{
@ -260,7 +260,7 @@ namespace IRaCIS.Core.Application.Service.Inspection
BlindName = add.BlindName,
ChildrenType = "Status",
OptType = "Init",
CreateTime = add.CreateTime,
CreateTime = add.CreateTime.AddMilliseconds(1),
CreateUserId = add.CreateUserId,
IP = add.IP,
ModuleType = add.ModuleType,

View File

@ -99,6 +99,34 @@ namespace IRaCIS.Core.Domain.Models
public string JsonDetail { get; set; } = string.Empty;
/// <summary>
/// 创建人名称
/// </summary>
public string CreateUserName { get; set; }
/// <summary>
/// 项目名称
/// </summary>
public string TrialName { get; set; }
/// <summary>
/// 中心名称
/// </summary>
public string SiteName { get; set; }
/// <summary>
/// 受试者名称
/// </summary>
public string SubjectName { get; set; }
/// <summary>
/// 创建人名称
/// </summary>
public string SubjectVisitName { get; set; }
/// <summary>
/// 创建人名称
/// </summary>
public string RoleName { get; set; }
}