Test.EIImageViewer
he 2023-02-22 14:40:48 +08:00
parent 6996ab51b4
commit 9e0f4eb0d6
1 changed files with 18 additions and 0 deletions

View File

@ -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<ParamInfoDto> ParamInfoList
{
get {
try
{
return JsonConvert.DeserializeObject<List<ParamInfoDto>>(ParamInfo);
}
catch (Exception e)
{
return new List<ParamInfoDto>();
}
}
}
}