Uat_Study
parent
551210901b
commit
576fca6d11
|
@ -252,7 +252,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public string CreateUserName { get; set; }
|
public string CreateUserName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public List<ImageInfo> FileList { get; set; }
|
public List<ImageInfo> FileList { get; set; } = new List<ImageInfo>();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -468,7 +468,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public string Questioning { get; set; } = string.Empty;
|
public string Questioning { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
public List<ImageInfo> FileList { get; set; }
|
public List<ImageInfo> FileList { get; set; } = new List<ImageInfo>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 审核建议
|
/// 审核建议
|
||||||
|
|
|
@ -184,7 +184,8 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return JsonConvert.DeserializeObject<List<ImageInfo>>(this.ImagePath);
|
var result= JsonConvert.DeserializeObject<List<ImageInfo>>(this.ImagePath);
|
||||||
|
return result==null?new List<ImageInfo>() : result;
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception)
|
||||||
{
|
{
|
||||||
|
|
|
@ -114,7 +114,8 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return JsonConvert.DeserializeObject<List<ImageInfo>>(this.ImagePath);
|
var result = JsonConvert.DeserializeObject<List<ImageInfo>>(this.ImagePath);
|
||||||
|
return result == null ? new List<ImageInfo>() : result;
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue