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