修改一版
parent
4e5ae0373d
commit
9b419aafe0
|
@ -8,7 +8,7 @@ namespace IRaCIS.Core.Infra.EFCore.Dto
|
|||
{
|
||||
public class SetDictionaryValueDto
|
||||
{
|
||||
public Guid Trial { get; set; }
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
public List<SetDictionaryDto> Items { get; set; }
|
||||
|
||||
|
|
|
@ -575,7 +575,7 @@ namespace IRaCIS.Core.Infra.EFCore
|
|||
foreach (var item in dto.Items)
|
||||
{
|
||||
item.Json = await GetDictionaryValue(item.Identification,item.Json);
|
||||
item.Json = await SetEnum(dto.Trial, item.Identification, item.Json);
|
||||
item.Json = await SetEnum(dto.TrialId, item.Identification, item.Json);
|
||||
}
|
||||
|
||||
return dto.Items.Select(x=>x.Json).ToList();
|
||||
|
|
Loading…
Reference in New Issue