Uat_Study
hang 2022-05-24 16:27:36 +08:00
parent f5b4af2ad7
commit 8c8e6da3a2
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
},
"BasicSystemConfig": {
"OpenUserComplexPassword": true,
"OpenUserComplexPassword": false,
"OpenSignDocumentBeforeWork": true,

View File

@ -987,7 +987,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
add.IsSign = true;
}
var inspectionData = new InspectionData()
var inspectionData = new InspectionJsonDetail()
{
Data = AddJsonItem(data, otherItem),
Inspection = generalData
@ -1003,7 +1003,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
/// 往json里面添加属性
/// </summary>
/// <param name="json">json</param>
/// <param name="keyValues">字典</param>
/// <param name="otherItem">添加对象</param>
/// <returns></returns>
public IDictionary<string, object> AddJsonItem(dynamic json, object otherItem = null)
{

View File

@ -64,7 +64,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common.Dto
/// <summary>
/// 稽查数据
/// </summary>
public class InspectionData
public class InspectionJsonDetail
{
public dynamic Data { get; set; }