From ea9bdf217e8202a5fa475262dba1792decb05bcb Mon Sep 17 00:00:00 2001 From: hutongqing <hutongqing@hnkhzn.com> Date: 星期五, 13 九月 2024 15:36:00 +0800 Subject: [PATCH] 1 --- 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseServices/ServiceBase.cs | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseServices/ServiceBase.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseServices/ServiceBase.cs" index 707c213..610c767 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseServices/ServiceBase.cs" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseServices/ServiceBase.cs" @@ -59,7 +59,6 @@ return pageGridData; } - protected string ValidatePageOptions(PageDataOptions options) { options = options ?? new PageDataOptions(); @@ -358,7 +357,7 @@ { return WebResponseContent.Instance.Error("浼犲弬閿欒,鍙傛暟涓嶈兘涓虹┖"); } - string validResult = typeof(TEntity).ValidateDicInEntity(saveModel.MainData, false, TProperties, list?.ToArray()); + string validResult = typeof(TEntity).ValidateDicInEntity(saveModel.MainData, false, TProperties, list?.ToArray() ?? null); if (!string.IsNullOrEmpty(validResult)) { @@ -376,7 +375,7 @@ List<string> listCol = new List<string>(); foreach (var item in saveModel.MainData) { - PropertyInfo propertyInfo = typeof(TEntity).GetProperty(item.Key); + PropertyInfo? propertyInfo = typeof(TEntity).GetProperty(item.Key); if (propertyInfo == null) { propertyInfo = typeof(TEntity).GetProperty(item.Key.FirstLetterToLower()); -- Gitblit v1.9.3