This commit is contained in:
he
2022-11-24 14:54:44 +08:00
parent 5f3ac44e74
commit 55388ce67f
2 changed files with 4 additions and 4 deletions
@@ -1097,9 +1097,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class GetCalculateTableQuestionsOutDto
{
public Guid TableQuestionId { get; set; }
public Guid QuestionId { get; set; }
public string TableQuestionName { get; set; }
public string QuestionName { get; set; }
}
@@ -160,8 +160,8 @@ namespace IRaCIS.Application.Services
.Select(x => new GetCalculateTableQuestionsOutDto
()
{
TableQuestionId = x.Id,
TableQuestionName = x.QuestionName
QuestionId = x.Id,
QuestionName = x.QuestionName
}).ToListAsync();