Uat_Study
parent
57bec89d11
commit
52c18a48db
|
@ -373,6 +373,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// 是否显示
|
/// 是否显示
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ShowQuestion ShowQuestion { get; set; }
|
public ShowQuestion ShowQuestion { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 最大问题数
|
||||||
|
/// </summary>
|
||||||
|
public int MaxQuestionCount { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ReadingQuestionSystemView
|
public class ReadingQuestionSystemView
|
||||||
|
@ -466,6 +471,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// 是否显示
|
/// 是否显示
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ShowQuestion ShowQuestion { get; set; }
|
public ShowQuestion ShowQuestion { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 最大问题数
|
||||||
|
/// </summary>
|
||||||
|
public int MaxQuestionCount { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -738,6 +749,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// 图片数量
|
/// 图片数量
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int ImageCount { get; set; } = 1;
|
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>
|
/// </summary>
|
||||||
public ShowQuestion ShowQuestion { get; set; }
|
public ShowQuestion ShowQuestion { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 最大问题数
|
||||||
|
/// </summary>
|
||||||
|
public int MaxQuestionCount { get; set; } = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -99,6 +99,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ShowQuestion ShowQuestion { get; set; } = ShowQuestion.Show;
|
public ShowQuestion ShowQuestion { get; set; } = ShowQuestion.Show;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 最大问题数
|
||||||
|
/// </summary>
|
||||||
|
public int MaxQuestionCount { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 创建人
|
/// 创建人
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -137,6 +137,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ShowQuestion ShowQuestion { get; set; } = ShowQuestion.Show;
|
public ShowQuestion ShowQuestion { get; set; } = ShowQuestion.Show;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 最大问题数
|
||||||
|
/// </summary>
|
||||||
|
public int MaxQuestionCount { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 分页标准
|
/// 分页标准
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -152,6 +157,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
[ForeignKey("ReadingQuestionCriterionTrialId")]
|
[ForeignKey("ReadingQuestionCriterionTrialId")]
|
||||||
public ReadingQuestionCriterionTrial ReadingQuestionCriterionTrial { get; set; }
|
public ReadingQuestionCriterionTrial ReadingQuestionCriterionTrial { get; set; }
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue