修改一版
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user