Uat_Study
he 2022-08-26 14:54:00 +08:00
parent 507c38e719
commit 6a1052a1fe
3 changed files with 19 additions and 11 deletions

View File

@ -4174,6 +4174,11 @@
病灶类型
</summary>
</member>
<member name="P:IRaCIS.Core.Application.ViewModel.OrganInfoQuery.LesionType">
<summary>
病灶类型
</summary>
</member>
<member name="T:IRaCIS.Core.Application.ViewModel.OrganInfoAddOrEdit">
<summary> OrganInfoAddOrEdit 列表查询参数模型</summary>
</member>

View File

@ -1010,6 +1010,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public QuestionMark? QuestionMark { get; set; }
public List<Guid> RelationIds { get; set; }
//public List<TableQuestionDataInfo> TableQuestions { get; set; }

View File

@ -1051,19 +1051,20 @@ namespace IRaCIS.Application.Services
ShowOrder = x.ShowOrder,
GroupName = string.Empty,
Id = x.Id,
Type=x.Type,
TableQuestionType= x.TableQuestionType,
DependParentId=x.DependParentId,
IsDepend=x.IsDepend,
QuestionMark=x.QuestionMark,
TypeValue =x.TypeValue,
RelevanceId=x.RelevanceId,
RelevanceValue=x.RelevanceValue,
Type = x.Type,
TableQuestionType = x.TableQuestionType,
DependParentId = x.DependParentId,
IsDepend = x.IsDepend,
QuestionMark = x.QuestionMark,
TypeValue = x.TypeValue,
RelevanceId = x.RelevanceId,
RelevanceValue = x.RelevanceValue,
ImageCount = 0,
ParentId = item.Id,
DataTableColumn= x.DataTableColumn,
DataTableColumn = x.DataTableColumn,
LesionType = item.LesionType,
QuestionName = x.QuestionName,
RelationIds = tableQuestions.Where(z => (z.DependParentId ?? default(Guid)) == x.Id).Select(z => z.Id).ToList(),
Remark = x.Remark,
}));