修改一版

This commit is contained in:
he
2022-06-16 13:40:59 +08:00
parent 8b3e75b2a1
commit 9a1ddb8450
7 changed files with 182 additions and 20 deletions
@@ -15,6 +15,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
[NotDefault]
public Guid TrialId { get; set; }
/// <summary>
/// 排序
/// </summary>
public int ShowOrder { get; set; }
/// <summary>
/// 标准
/// </summary>
@@ -59,6 +64,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid Id { get; set; }
public string Value { get; set; }
/// <summary>
/// 排序
/// </summary>
public int ShowOrder { get; set; }
}
public class SetSystemReadingQuestionCriterionIsIsEnable
@@ -70,6 +80,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsEnable { get; set; }
}
public class SetSystemReadingQuestionCriterionIsIsCompleteConfig
{
[NotDefault]
public Guid Id { get; set; }
public bool IsCompleteConfig { get; set; }
}
/// <summary>
///
/// </summary>
@@ -133,6 +153,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsEnable { get; set; }
public string ParentQuestionName { get; set; }
/// <summary>
/// 是否是裁判问题
/// </summary>
public bool IsJudgeQuestion { get; set; }
}
public class ReadingQuestionSystemView
@@ -185,7 +210,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string TypeValue { get; set; }
public bool IsEnable { get; set; }
//public bool IsEnable { get; set; }
/// <summary>
/// 是否是裁判问题
/// </summary>
public bool IsJudgeQuestion { get; set; }
}
@@ -322,6 +352,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public Guid? ParentId { get; set; }
/// <summary>
/// 是否是裁判问题
/// </summary>
public bool IsJudgeQuestion { get; set; } = false;
/// <summary>
/// 类型值
@@ -348,6 +383,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public Guid ReadingQuestionCriterionTrialId { get; set; }
/// <summary>
/// 是否是裁判问题
/// </summary>
public bool IsJudgeQuestion { get; set; } = false;
/// <summary>
/// 类型
/// </summary>
@@ -405,11 +445,18 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string CriterionName { get; set; }
public int ShowOrder { get; set; }
/// <summary>
/// 是否启用
/// </summary>
public bool IsEnable { get; set; }
/// <summary>
/// 是否完成配置
/// </summary>
public bool IsCompleteConfig { get; set; }
public int QuestionCount { get; set; }
}
@@ -436,6 +483,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public bool IsEnable { get; set; }
/// <summary>
/// 是否完成配置
/// </summary>
public bool IsCompleteConfig { get; set; }
public int QuestionCount { get; set; }
/// <summary>