Uat_Study
hang 2022-08-25 15:45:08 +08:00
parent 15e1b4ac87
commit a37e2288f0
2 changed files with 6 additions and 3 deletions

View File

@ -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(); 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);
}
} }
} }

View File

@ -36,7 +36,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary> /// <summary>
/// 是否为访视 /// 是否为访视
/// </summary> /// </summary>xiu
public bool IsVisit { get; set; } public bool IsVisit { get; set; }
/// <summary> /// <summary>
@ -66,7 +66,6 @@ namespace IRaCIS.Core.Domain.Models
public int FileCount { get; set; } public int FileCount { get; set; }
[JsonIgnore]
//临床数据状态 //临床数据状态
public ReadingClinicalDataStatus ReadingClinicalDataState { get; set; } public ReadingClinicalDataStatus ReadingClinicalDataState { get; set; }