Uat_Study
he 2022-12-01 17:59:01 +08:00
parent 608fee950b
commit 359aefe7f9
2 changed files with 7 additions and 0 deletions

View File

@ -1054,6 +1054,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{
public Guid QuestionId { get; set; }
/// <summary>
/// 自定义计算标记
/// </summary>
public CustomCalculateMark? CustomCalculateMark { get; set; }
public List<CalculateInfo> CalculateQuestionList { get; set; }
}

View File

@ -480,6 +480,7 @@ namespace IRaCIS.Application.Services
.Select(x => new CalculateRelationDto()
{
QuestionId = x.Id,
CustomCalculateMark=x.CustomCalculateMark,
CalculateQuestionList = x.CalculateQuestionList
}).ToListAsync();
@ -490,6 +491,7 @@ namespace IRaCIS.Application.Services
.Select(x => new CalculateRelationDto()
{
QuestionId = x.Id,
CustomCalculateMark = x.CustomCalculateMark,
CalculateQuestionList = x.CalculateQuestionList
}).ToListAsync();