IRC_NewDev
he 2024-10-15 10:29:31 +08:00
parent 2208e1dbe5
commit cb4296396f
4 changed files with 96 additions and 16 deletions

View File

@ -1,5 +1,7 @@
using IRaCIS.Core.Domain.Share; using IRaCIS.Core.Domain.Share;
using Newtonsoft.Json;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Application.Service.Reading.Dto namespace IRaCIS.Core.Application.Service.Reading.Dto
{ {
@ -850,10 +852,27 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ExportIdentification? ExportIdentification { get; set; } public ExportIdentification? ExportIdentification { get; set; }
/// <summary> [Comment("导出结果")]
/// 导出结果 public string ExportResultStr { get; set; } = "[]";
/// </summary>
public ExportResult? ExportResult { get; set; } [NotMapped]
public List<ExportResult> ExportResult
{
get
{
try
{
var result = JsonConvert.DeserializeObject<List<ExportResult>>(this.ExportResultStr);
return result == null ? new List<ExportResult>() : result;
}
catch (Exception)
{
return new List<ExportResult>();
}
}
}
/// <summary> /// <summary>
/// 分组 /// 分组
@ -1124,8 +1143,25 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
[Comment("导出标识")] [Comment("导出标识")]
public ExportIdentification? ExportIdentification { get; set; } public ExportIdentification? ExportIdentification { get; set; }
[Comment("导出结果")] public string ExportResultStr { get; set; } = "[]";
public ExportResult? ExportResult { get; set; }
public List<ExportResult> ExportResult
{
get
{
try
{
var result = JsonConvert.DeserializeObject<List<ExportResult>>(this.ExportResultStr);
return result == null ? new List<ExportResult>() : result;
}
catch (Exception)
{
return new List<ExportResult>();
}
}
}
/// <summary> /// <summary>
/// 数值类型 /// 数值类型
@ -1673,10 +1709,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ExportIdentification? ExportIdentification { get; set; } public ExportIdentification? ExportIdentification { get; set; }
/// <summary>
/// 导出结果 [Comment("导出结果")]
/// </summary> public string ExportResultStr { get; set; } = "[]";
public ExportResult? ExportResult { get; set; }
public List<ExportResult> ExportResult { get; set; } = new List<ExportResult>();
/// <summary> /// <summary>
/// 数值类型 /// 数值类型
@ -1901,10 +1938,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public ExportIdentification? ExportIdentification { get; set; } public ExportIdentification? ExportIdentification { get; set; }
/// <summary> [Comment("导出结果")]
/// 导出结果 public string ExportResultStr { get; set; } = "[]";
/// </summary>
public ExportResult? ExportResult { get; set; } public List<ExportResult> ExportResult { get; set; } = new List<ExportResult>();
public bool IsAdditional { get; set; } public bool IsAdditional { get; set; }

View File

@ -233,6 +233,8 @@ namespace IRaCIS.Core.Application.Service
{ {
indto.ParentTriggerValue = string.Join(',', indto.ParentTriggerValueList); indto.ParentTriggerValue = string.Join(',', indto.ParentTriggerValueList);
indto.RelevanceValue = string.Join(',', indto.RelevanceValueList); indto.RelevanceValue = string.Join(',', indto.RelevanceValueList);
indto.ExportResultStr = JsonConvert.SerializeObject(indto.ExportResult);
indto.HighlightAnswer = JsonConvert.SerializeObject(indto.HighlightAnswerList); indto.HighlightAnswer = JsonConvert.SerializeObject(indto.HighlightAnswerList);
if (indto.Id != null) if (indto.Id != null)
{ {
@ -398,6 +400,7 @@ namespace IRaCIS.Core.Application.Service
throw new BusinessValidationFailedException(_localizer["ReadingQuestion_IdDup"]); throw new BusinessValidationFailedException(_localizer["ReadingQuestion_IdDup"]);
} }
indto.ParentTriggerValue = string.Join(',', indto.ParentTriggerValueList); indto.ParentTriggerValue = string.Join(',', indto.ParentTriggerValueList);
indto.ExportResultStr = JsonConvert.SerializeObject(indto.ExportResult);
indto.RelevanceValue = string.Join(',', indto.RelevanceValueList); indto.RelevanceValue = string.Join(',', indto.RelevanceValueList);
indto.HighlightAnswer = JsonConvert.SerializeObject(indto.HighlightAnswerList); indto.HighlightAnswer = JsonConvert.SerializeObject(indto.HighlightAnswerList);

View File

@ -195,5 +195,24 @@ public class ReadingQuestionSystem : BaseAddAuditEntity
public ExportIdentification? ExportIdentification { get; set; } public ExportIdentification? ExportIdentification { get; set; }
[Comment("导出结果")] [Comment("导出结果")]
public ExportResult? ExportResult { get; set; } public string ExportResultStr { get; set; } = "[]";
[NotMapped]
public List<ExportResult> ExportResult
{
get
{
try
{
var result = JsonConvert.DeserializeObject<List<ExportResult>>(this.ExportResultStr);
return result == null ? new List<ExportResult>() : result;
}
catch (Exception)
{
return new List<ExportResult>();
}
}
}
} }

View File

@ -260,7 +260,26 @@ public class ReadingQuestionTrial : BaseAddAuditEntity
public ExportIdentification? ExportIdentification { get; set; } public ExportIdentification? ExportIdentification { get; set; }
[Comment("导出结果")] [Comment("导出结果")]
public ExportResult? ExportResult { get; set; } public string ExportResultStr { get; set; } = "[]";
[NotMapped]
public List<ExportResult> ExportResult
{
get
{
try
{
var result = JsonConvert.DeserializeObject<List<ExportResult>>(this.ExportResultStr);
return result == null ? new List<ExportResult>() : result;
}
catch (Exception)
{
return new List<ExportResult>();
}
}
}
} }
public class CalculateInfo public class CalculateInfo
{ {