Uat_Study
parent
28cab4bd11
commit
7c8efc6139
|
@ -735,6 +735,16 @@ namespace IRaCIS.Core.Application.Service
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
list = list.GroupBy(x => new { x.Key }, (key, lst) => new
|
||||||
|
{
|
||||||
|
DataType = lst.Max(x => x.DataType),
|
||||||
|
TableConfigJsonStr = lst.Max(x => x.TableConfigJsonStr),
|
||||||
|
Key = key.Key,
|
||||||
|
Code = lst.Max(x => x.Code),
|
||||||
|
Type = lst.Max(x => x.Type),
|
||||||
|
|
||||||
|
}).ToList();
|
||||||
|
|
||||||
var jsonDataDic = JsonConvert.DeserializeObject<IDictionary<string, object>>(jsonStr);
|
var jsonDataDic = JsonConvert.DeserializeObject<IDictionary<string, object>>(jsonStr);
|
||||||
foreach (var item in list)
|
foreach (var item in list)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue