Uat_Study
parent
7124bc31f2
commit
9b38b37094
|
@ -347,6 +347,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public Arm ArmEnum { get; set; }
|
public Arm ArmEnum { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public Guid GlobalVisitTaskId { get; set; }
|
||||||
|
|
||||||
public Guid VisitTaskId { get; set; }
|
public Guid VisitTaskId { get; set; }
|
||||||
|
|
||||||
public List<JudgeQuestion> JudgeQuestionList { get; set; }
|
public List<JudgeQuestion> JudgeQuestionList { get; set; }
|
||||||
|
|
|
@ -806,6 +806,7 @@ namespace IRaCIS.Application.Services
|
||||||
{
|
{
|
||||||
ArmEnum = item.ArmEnum,
|
ArmEnum = item.ArmEnum,
|
||||||
VisitTaskId = item.VisitTaskId,
|
VisitTaskId = item.VisitTaskId,
|
||||||
|
GlobalVisitTaskId= item.VisitTaskId,
|
||||||
JudgeQuestionList = item.AfterQuestionList.Where(x => x.QuestionId != null).Select(x => new JudgeQuestion()
|
JudgeQuestionList = item.AfterQuestionList.Where(x => x.QuestionId != null).Select(x => new JudgeQuestion()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -838,7 +839,8 @@ namespace IRaCIS.Application.Services
|
||||||
{
|
{
|
||||||
ArmEnum = twoItem.ArmEnum,
|
ArmEnum = twoItem.ArmEnum,
|
||||||
VisitTaskId = twoItem.VisitTaskId,
|
VisitTaskId = twoItem.VisitTaskId,
|
||||||
JudgeQuestionList = twoItem.AfterQuestionList.Where(x => x.QuestionId != null).Select(x => new JudgeQuestion()
|
GlobalVisitTaskId = twoItem.VisitTaskId,
|
||||||
|
JudgeQuestionList = twoItem.AfterQuestionList.Where(x => x.QuestionId != null).Select(x => new JudgeQuestion()
|
||||||
{
|
{
|
||||||
|
|
||||||
Answer = x.Answer,
|
Answer = x.Answer,
|
||||||
|
|
Loading…
Reference in New Issue