From 8fff8cb74d92bb33135b1595ac8695c5046623ad Mon Sep 17 00:00:00 2001 From: userName <411147591@qq.com> Date: Thu, 14 May 2026 07:48:01 +0800 Subject: [PATCH] =?UTF-8?q?fix=20#=E4=BF=AE=E5=A4=8D=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E7=94=9F=E6=88=90=E8=A7=86=E5=9B=BE=E4=BB=A3=E7=A0=81=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SmartSQL/SmartSQL/UserControl/GenCodes/UcGenCode.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SmartSQL/SmartSQL/UserControl/GenCodes/UcGenCode.xaml.cs b/SmartSQL/SmartSQL/UserControl/GenCodes/UcGenCode.xaml.cs index d69c601..c04001b 100644 --- a/SmartSQL/SmartSQL/UserControl/GenCodes/UcGenCode.xaml.cs +++ b/SmartSQL/SmartSQL/UserControl/GenCodes/UcGenCode.xaml.cs @@ -795,7 +795,7 @@ namespace SmartSQL.UserControl.GenCodes selectedConnectionString, selectedDatabase.DbName); foreach (var group in treeViewData) { - if (group.Type == "Type" && group.Name.Equals("treeTable")) + if (group.Type == "Type" && (group.Name.Equals("treeTable") || group.Name.Equals("treeView"))) { int orderNo = 1; foreach (var node in group.Children) -- Gitee