From 9e0f4eb0d67df5c3b528fee04de6fd34fb78b8dc Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Wed, 22 Feb 2023 14:40:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/QC/DTO/QARecordViewModel.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/IRaCIS.Core.Application/Service/QC/DTO/QARecordViewModel.cs b/IRaCIS.Core.Application/Service/QC/DTO/QARecordViewModel.cs index d2d184e1..d6472028 100644 --- a/IRaCIS.Core.Application/Service/QC/DTO/QARecordViewModel.cs +++ b/IRaCIS.Core.Application/Service/QC/DTO/QARecordViewModel.cs @@ -1,4 +1,5 @@ using IRaCIS.Application.Contracts; +using IRaCIS.Core.Application.MediatR.CommandAndQueries; using IRaCIS.Core.Domain.Share; using Newtonsoft.Json; @@ -478,6 +479,23 @@ namespace IRaCIS.Core.Application.Contracts.DTO public bool? IsCRCNeedReply { get; set; } public UserTypeEnum UserTypeEnum { get; set; } + + public string ParamInfo { get; set; } + + public List ParamInfoList + { + get { + try + { + return JsonConvert.DeserializeObject>(ParamInfo); + } + catch (Exception e) + { + + return new List(); + } + } + } }