Uat_Study
parent
608fee950b
commit
359aefe7f9
|
@ -1054,6 +1054,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
{
|
{
|
||||||
public Guid QuestionId { get; set; }
|
public Guid QuestionId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 自定义计算标记
|
||||||
|
/// </summary>
|
||||||
|
public CustomCalculateMark? CustomCalculateMark { get; set; }
|
||||||
|
|
||||||
public List<CalculateInfo> CalculateQuestionList { get; set; }
|
public List<CalculateInfo> CalculateQuestionList { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -480,6 +480,7 @@ namespace IRaCIS.Application.Services
|
||||||
.Select(x => new CalculateRelationDto()
|
.Select(x => new CalculateRelationDto()
|
||||||
{
|
{
|
||||||
QuestionId = x.Id,
|
QuestionId = x.Id,
|
||||||
|
CustomCalculateMark=x.CustomCalculateMark,
|
||||||
CalculateQuestionList = x.CalculateQuestionList
|
CalculateQuestionList = x.CalculateQuestionList
|
||||||
|
|
||||||
}).ToListAsync();
|
}).ToListAsync();
|
||||||
|
@ -490,6 +491,7 @@ namespace IRaCIS.Application.Services
|
||||||
.Select(x => new CalculateRelationDto()
|
.Select(x => new CalculateRelationDto()
|
||||||
{
|
{
|
||||||
QuestionId = x.Id,
|
QuestionId = x.Id,
|
||||||
|
CustomCalculateMark = x.CustomCalculateMark,
|
||||||
CalculateQuestionList = x.CalculateQuestionList
|
CalculateQuestionList = x.CalculateQuestionList
|
||||||
|
|
||||||
}).ToListAsync();
|
}).ToListAsync();
|
||||||
|
|
Loading…
Reference in New Issue