Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details

Uat_IRC_Net8
he 2025-07-15 16:49:14 +08:00
commit 94ba76b3f3
2 changed files with 2 additions and 0 deletions

View File

@ -1985,6 +1985,7 @@ namespace IRaCIS.Core.Application.Contracts
public class QCQuestionAnswer public class QCQuestionAnswer
{ {
public Guid? AnswerId { get; set; }
public Guid Id { get; set; } public Guid Id { get; set; }
public string QuestionName { get; set; } = String.Empty; public string QuestionName { get; set; } = String.Empty;
public bool IsRequired { get; set; } public bool IsRequired { get; set; }

View File

@ -519,6 +519,7 @@ namespace IRaCIS.Core.Application.Image.QA
from leftanswer in answertemp.DefaultIfEmpty() from leftanswer in answertemp.DefaultIfEmpty()
select new QCQuestionAnswer() select new QCQuestionAnswer()
{ {
AnswerId= leftanswer.Id,
Answer = leftanswer.Answer, Answer = leftanswer.Answer,
ShowOrder = data.ShowOrder, ShowOrder = data.ShowOrder,
QuestionName = data.QuestionName, QuestionName = data.QuestionName,