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(); + } + } + } }