修改一版

This commit is contained in:
he
2022-06-14 15:36:27 +08:00
parent e5b5dd2d50
commit e9cc363bd7
4 changed files with 28 additions and 4 deletions
@@ -220,6 +220,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 问题名称
/// </summary>
public string QuestionName { get; set; }
/// <summary>
/// 类型值
/// </summary>
public string TypeValue { get; set; }
}
public class GetTrialCriterionOtherQuestionInDto
{
@@ -191,7 +191,8 @@ namespace IRaCIS.Application.Services
.Select(x => new CriterionOtherQuestionOutDto()
{
QuestionId = x.Id,
QuestionName = x.QuestionName
QuestionName = x.QuestionName,
TypeValue=x.TypeValue,
}).ToListAsync();
return questionList;
@@ -413,7 +414,8 @@ namespace IRaCIS.Application.Services
.Select(x => new CriterionOtherQuestionOutDto()
{
QuestionId = x.Id,
QuestionName = x.QuestionName
QuestionName = x.QuestionName,
TypeValue = x.TypeValue,
}).ToListAsync();
return questionList;