diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs index 3c3d3d455..0c7236acc 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs @@ -373,11 +373,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// 是否完成配置 /// public bool IsCompleteConfig { get; set; } = false; - - /// - /// 标准英文 - /// - public string CriterionEName { get; set; } } /// @@ -1121,10 +1116,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public string CriterionName { get; set; } - /// - /// 标准英文 - /// - public string CriterionEName { get; set; } } public class ReadingQuestionCriterionSystemView @@ -1158,10 +1149,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public int QuestionCount { get; set; } - /// - /// 标准英文 - /// - public string CriterionEName { get; set; } + public bool IsBeUsed { get; set; } = false; } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs index 2c300d490..66c8812b2 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs @@ -698,7 +698,7 @@ namespace IRaCIS.Application.Services { Id = x.Id, CriterionName = x.CriterionName, - CriterionEName=x.CriterionEName, + }).ToListAsync(); return criterionList; } diff --git a/IRaCIS.Core.Domain/Reading/ReadingQuestionCriterionSystem.cs b/IRaCIS.Core.Domain/Reading/ReadingQuestionCriterionSystem.cs index f969bf940..0e3172cdf 100644 --- a/IRaCIS.Core.Domain/Reading/ReadingQuestionCriterionSystem.cs +++ b/IRaCIS.Core.Domain/Reading/ReadingQuestionCriterionSystem.cs @@ -44,10 +44,7 @@ namespace IRaCIS.Core.Domain.Models /// public DateTime ConfirmTime { get; set; } - /// - /// 标准英文 - /// - public string CriterionEName { get; set; } = string.Empty; + /// /// 创建人