Uat_Study
he 2022-08-12 09:59:33 +08:00
parent 57bec89d11
commit 52c18a48db
3 changed files with 32 additions and 0 deletions

View File

@ -373,6 +373,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示
/// </summary>
public ShowQuestion ShowQuestion { get; set; }
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; }
}
public class ReadingQuestionSystemView
@ -466,6 +471,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示
/// </summary>
public ShowQuestion ShowQuestion { get; set; }
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; }
}
@ -738,6 +749,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 图片数量
/// </summary>
public int ImageCount { get; set; } = 1;
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; } = 0;
}
@ -842,6 +858,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示
/// </summary>
public ShowQuestion ShowQuestion { get; set; }
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; } = 0;
}

View File

@ -99,6 +99,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public ShowQuestion ShowQuestion { get; set; } = ShowQuestion.Show;
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; }
/// <summary>
/// 创建人
/// </summary>

View File

@ -137,6 +137,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public ShowQuestion ShowQuestion { get; set; } = ShowQuestion.Show;
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; }
/// <summary>
/// 分页标准
/// </summary>
@ -152,6 +157,7 @@ namespace IRaCIS.Core.Domain.Models
[ForeignKey("ReadingQuestionCriterionTrialId")]
public ReadingQuestionCriterionTrial ReadingQuestionCriterionTrial { get; set; }
}