From 081cc0ab0f99b1cc9273a314537efeaaa1f9eaa5 Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Fri, 24 May 2024 15:45:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=8E=B7=E5=8F=96=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=E8=A1=A8=E5=8D=95=E4=BF=A1=E6=81=AF=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=20=E6=96=B0=E5=A2=9E=E4=B8=8B=E6=8B=89=E5=A4=9A=E9=80=89?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E8=BF=94=E5=9B=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Services/BASE/BaseServices.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tiobon.Core.Services/BASE/BaseServices.cs b/Tiobon.Core.Services/BASE/BaseServices.cs index dac278e1..45ca8a49 100644 --- a/Tiobon.Core.Services/BASE/BaseServices.cs +++ b/Tiobon.Core.Services/BASE/BaseServices.cs @@ -204,7 +204,7 @@ public class BaseServices : IBaseServ dataSource, defaultHidden, isPrimaryKey, - isSingleColumn + isSingleColumn,multipleSelect FROM Ghrs_PageSettingEdit WHERE IsEnable = 1 AND pageNo = '{body.menuName}' @@ -226,6 +226,7 @@ public class BaseServices : IBaseServ new JProperty("defaultHidden", dt.Rows[i]["defaultHidden"].ToString()), new JProperty("isPrimaryKey", !string.IsNullOrWhiteSpace(dt.Rows[i]["isPrimaryKey"].ToString())? Convert.ToBoolean(dt.Rows[i]["isPrimaryKey"]):null), new JProperty("isSingleColumn",!string.IsNullOrWhiteSpace(dt.Rows[i]["isSingleColumn"].ToString())? Convert.ToInt32(dt.Rows[i]["isSingleColumn"]):null), + new JProperty("multipleSelect",!string.IsNullOrWhiteSpace(dt.Rows[i]["multipleSelect"].ToString())? Convert.ToBoolean(dt.Rows[i]["multipleSelect"]):null), ]; tableColumn.Add(item); }