This commit is contained in:
he
2024-10-15 14:40:27 +08:00
parent 8e1ae18de0
commit 48da4994b9
7 changed files with 18045 additions and 6 deletions
@@ -471,6 +471,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsCopy { get; set; } = false;
public Guid? ClassifyTableQuestionId { get; set; }
public string ClassifyAlgorithms { get; set; } = string.Empty;
@@ -1139,10 +1140,24 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class ReadingQuestionSystemView
{
/// <summary>
/// 导出标识
/// </summary>
[Comment("导出标识")]
public ExportIdentification? ExportIdentification { get; set; }
/// <summary>
/// 分类算法
/// </summary>
[Comment("分类算法")]
public string ClassifyAlgorithms { get; set; } = string.Empty;
/// <summary>
/// 分类问题Id
/// </summary>
[Comment("分类问题Id")]
public Guid? ClassifyQuestionId { get; set; }
public string ExportResultStr { get; set; } = "[]";
public List<ExportResult> ExportResult
@@ -1721,10 +1736,22 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public ExportIdentification? ExportIdentification { get; set; }
[Comment("导出结果")]
/// <summary>
/// 导出结果
/// </summary>
public string ExportResultStr { get; set; } = "[]";
/// <summary>
/// 分类算法
/// </summary>
public string ClassifyAlgorithms { get; set; } = string.Empty;
/// <summary>
/// 分类问题Id
/// </summary>
public Guid? ClassifyQuestionId { get; set; }
public List<ExportResult> ExportResult { get; set; } = new List<ExportResult>();
/// <summary>