Uat_Study
parent
48e273d4af
commit
251605b23b
|
@ -246,7 +246,7 @@ namespace IRaCIS.Core.Application.Service.Inspection
|
||||||
add.SignId = signId;
|
add.SignId = signId;
|
||||||
add.IP = _userInfo.IP;
|
add.IP = _userInfo.IP;
|
||||||
await _repository.AddAsync(add);
|
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,
|
BlindName = add.BlindName,
|
||||||
ChildrenType = "Status",
|
ChildrenType = "Status",
|
||||||
OptType = "Init",
|
OptType = "Init",
|
||||||
CreateTime = add.CreateTime,
|
CreateTime = add.CreateTime.AddMilliseconds(1),
|
||||||
CreateUserId = add.CreateUserId,
|
CreateUserId = add.CreateUserId,
|
||||||
IP = add.IP,
|
IP = add.IP,
|
||||||
ModuleType = add.ModuleType,
|
ModuleType = add.ModuleType,
|
||||||
|
|
|
@ -99,6 +99,34 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
public string JsonDetail { get; set; } = string.Empty;
|
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; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue