Uat_Study
hang 2022-09-09 10:14:12 +08:00
parent a1e00e0ce0
commit 7109f31406
2 changed files with 2 additions and 1 deletions

View File

@ -947,6 +947,7 @@ namespace IRaCIS.Core.Application.Service
var alllist = _frontAuditConfigRepository.Where(x => item.DataSourceGuids.Contains(x.ParentId)).ToList().GroupBy(x => new { x.ValueCN }, (key, lst) => new FrontAuditConfig
{
Sort = lst.Select(x => x.Sort).FirstOrDefault(),
TableConfigJsonStr= lst.Select(x => x.TableConfigJsonStr).FirstOrDefault(),
IsShowByTrialConfig = lst.Select(x => x.IsShowByTrialConfig).FirstOrDefault(),
TrialConfigRelyFieldName = lst.Select(x => x.TrialConfigRelyFieldName).FirstOrDefault(),
Code = lst.Max(x => x.Code),

View File

@ -213,7 +213,7 @@ namespace IRaCIS.Core.Domain.Models
public string TableConfigJsonStr { get; set; }
public string TableConfigJsonStr { get; set; } = String.Empty;