diff --git a/IRaCIS.Core.API/appsettings.Production.json b/IRaCIS.Core.API/appsettings.Production.json
index b32508856..6a4c74c67 100644
--- a/IRaCIS.Core.API/appsettings.Production.json
+++ b/IRaCIS.Core.API/appsettings.Production.json
@@ -13,7 +13,7 @@
},
"BasicSystemConfig": {
- "OpenUserComplexPassword": true,
+ "OpenUserComplexPassword": false,
"OpenSignDocumentBeforeWork": true,
diff --git a/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs b/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs
index eb620b330..c1e5dcb1d 100644
--- a/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs
+++ b/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs
@@ -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里面添加属性
///
/// json
- /// 字典
+ /// 添加对象
///
public IDictionary AddJsonItem(dynamic json, object otherItem = null)
{
diff --git a/IRaCIS.Core.Infra.EFCore/Common/Dto/SetDictionaryValueDto.cs b/IRaCIS.Core.Infra.EFCore/Common/Dto/SetDictionaryValueDto.cs
index e1cdfcb88..163ccc740 100644
--- a/IRaCIS.Core.Infra.EFCore/Common/Dto/SetDictionaryValueDto.cs
+++ b/IRaCIS.Core.Infra.EFCore/Common/Dto/SetDictionaryValueDto.cs
@@ -64,7 +64,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common.Dto
///
/// 稽查数据
///
- public class InspectionData
+ public class InspectionJsonDetail
{
public dynamic Data { get; set; }