@@ -2492,12 +2492,20 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
{
|
||||
public string JudgeResultRemark { get; set; } = string.Empty;
|
||||
public List<string> JudgeResultImagePathList { get; set; } = new List<string>();
|
||||
/// <summary>
|
||||
/// 本次生成裁判的触发问题(包含自动计算题追溯到的源问题)
|
||||
/// </summary>
|
||||
public List<Guid> TriggerJudgeQuestionIds { get; set; } = new List<Guid>();
|
||||
public List<JudgeFormQuestionDto> QuestionList { get; set; } = new List<JudgeFormQuestionDto>();
|
||||
}
|
||||
|
||||
public class JudgeFormQuestionDto
|
||||
{
|
||||
public Guid ReadingQuestionId { get; set; }
|
||||
/// <summary>
|
||||
/// 是否为本次生成裁判的触发问题
|
||||
/// </summary>
|
||||
public bool IsTriggerJudge { get; set; }
|
||||
public string QuestionName { get; set; } = string.Empty;
|
||||
public string Type { get; set; } = string.Empty;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user