Uat_Study
parent
15e1b4ac87
commit
a37e2288f0
|
@ -397,7 +397,11 @@ namespace IRaCIS.Core.Application.Service
|
|||
|
||||
var userObj = await _repository.Where<User>(t => t.Id == objectRelationParentId).Select(t => new { UserRealName = t.FullName, t.Phone, t.UserName, UserType = t.UserTypeRole.UserTypeShortName, t.EMail, t.OrganizationName }).FirstOrDefaultAsync();
|
||||
|
||||
objectLsit.Add(userObj);
|
||||
if(userObj != null)
|
||||
{
|
||||
objectLsit.Add(userObj);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ namespace IRaCIS.Core.Domain.Models
|
|||
|
||||
/// <summary>
|
||||
/// 是否为访视
|
||||
/// </summary>
|
||||
/// </summary>xiu
|
||||
public bool IsVisit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
@ -66,7 +66,6 @@ namespace IRaCIS.Core.Domain.Models
|
|||
|
||||
public int FileCount { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
|
||||
//临床数据状态
|
||||
public ReadingClinicalDataStatus ReadingClinicalDataState { get; set; }
|
||||
|
|
Loading…
Reference in New Issue