diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index eeb1047ff..0d36e7cd9 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -22,6 +22,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto } } + /// + /// 限制编辑 + /// + public LimitEdit LimitEdit { get; set; } = LimitEdit.None; public Guid QuestionId { get; set; } public Guid TableQuestionId { get; set; } diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs index bd98f20ec..ef9a7a4c7 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs @@ -145,6 +145,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate LesionType = x.LesionType, QuestionGenre = x.QuestionGenre, DictionaryCode = x.DictionaryCode, + LimitEdit= x.LimitEdit, TypeValue = x.TypeValue, QuestionName = x.QuestionName.LanguageName(x.QuestionEnName, _userInfo.IsEn_Us), ShowOrder = x.ShowOrder, @@ -167,6 +168,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate DataSource = x.DataSource, QuestionGenre = x.QuestionGenre, GroupEnName=x.GroupEnName, + LimitEdit = x.LimitEdit, DictionaryCode = x.DictionaryCode, Type = x.Type, QuestionType = x.QuestionType, @@ -235,6 +237,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate Type = x.Type, IsShowInDicom = question.IsShowInDicom, DataSource = x.DataSource, + LimitEdit = x.LimitEdit, LesionType = question.LesionType, TableQuestionType = x.TableQuestionType, DictionaryCode = x.DictionaryCode,