Uat_Study
parent
ad7e430784
commit
06a760eeff
|
@ -120,9 +120,9 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
public Guid? ParentId { get; set; }
|
public Guid? ParentId { get; set; }
|
||||||
public bool IsEnable { get; set; }
|
public bool IsEnable { get; set; }
|
||||||
public bool IsConfig { get; set; }
|
public bool IsConfig { get; set; }
|
||||||
public string ModuleTypeId { get; set; } = string.Empty;
|
public Guid? ModuleTypeId { get; set; }
|
||||||
public string OptTypeId { get; set; } = string.Empty;
|
public Guid? OptTypeId { get; set; }
|
||||||
public string ChildrenTypeId { get; set; } = string.Empty;
|
public Guid? ChildrenTypeId { get; set; }
|
||||||
|
|
||||||
public string ConfigType { get; set; } = string.Empty;
|
public string ConfigType { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
@ -136,7 +136,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
|
|
||||||
public string EnumType { get; set; } = string.Empty;
|
public string EnumType { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string ObjectTypeId { get; set; } = string.Empty;
|
public Guid? ObjectTypeId { get; set; }
|
||||||
|
|
||||||
public bool? IsShowByTrialConfig { get; set; }
|
public bool? IsShowByTrialConfig { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -171,7 +171,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
DictionaryCode = lst.Max(x => x.DictionaryCode),
|
DictionaryCode = lst.Max(x => x.DictionaryCode),
|
||||||
DictionaryType = lst.Max(x => x.DictionaryType),
|
DictionaryType = lst.Max(x => x.DictionaryType),
|
||||||
DateType = lst.Select(x => x.DateType).FirstOrDefault(),
|
DateType = lst.Select(x => x.DateType).FirstOrDefault(),
|
||||||
Id =Guid.NewGuid(),
|
Id =NewId.NextGuid()//新id,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
// 获取已存在的所有名称
|
// 获取已存在的所有名称
|
||||||
|
|
Loading…
Reference in New Issue