commit 5141cdce51e698c448c8f38d5dc9b7d8a6a11fd8 Author: editor <@51Aspx.com> Date: Fri Oct 11 17:58:40 2024 +0800 初始化 diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..129a92b --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,44 @@ +无限级树形(三层开发)源码 + +一、源码描述 +环境:VS2022 sql2019 + +二、功能介绍 +DAL-数据层 +BLL-逻辑层 +Model-实体类层 +WebUI-表现层 + +非标准的三层架构写的,没有使用数据实体层,实现了基本的无限级分类功能  +DB_51Aspx下为Sql数据库文件,附加即可 +附加后修改DAL/ClassTree.cs中对应的数据库配置并编译 + +三、注意事项 +1、附加数据库。 +2、ctrl+F5运行即可。 + + + + + + +作者: honghu + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/ClassTree +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/BLL/.vs/BLL.csproj.dtbcache.json b/BLL/.vs/BLL.csproj.dtbcache.json new file mode 100644 index 0000000..6a95c35 --- /dev/null +++ b/BLL/.vs/BLL.csproj.dtbcache.json @@ -0,0 +1 @@ +{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\BLL","ProjectFileName":"BLL.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"ClassTree.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"}],"References":[{"Reference":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\DAL\\bin\\Debug\\DAL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\BLL\\bin\\Debug\\BLL.dll","OutputItemRelativePath":"BLL.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\BLL\\bin\\Debug\\BLL.pdb","OutputItemRelativePath":"BLL.pdb"}],"CopyToOutputEntries":[]} diff --git a/BLL/BLL.csproj b/BLL/BLL.csproj new file mode 100644 index 0000000..2b6719a --- /dev/null +++ b/BLL/BLL.csproj @@ -0,0 +1,15 @@ + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {8E118A77-4017-4CD1-BCF4-380263D26609} + Library + Properties + BLL + BLL + v4.8 + 512 + diff --git a/BLL/ClassTree.cs b/BLL/ClassTree.cs new file mode 100644 index 0000000..53ac167 --- /dev/null +++ b/BLL/ClassTree.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using DAL; +using System.Data; + +namespace BLL +{ + /// + /// 业务逻辑层 + /// + public class ClassTree + { + public DataSet getAllClassName() diff --git a/BLL/Properties/AssemblyInfo.cs b/BLL/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2e3c4a9 --- /dev/null +++ b/BLL/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("BLL")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("jhsoft")] +[assembly: AssemblyProduct("BLL")] +[assembly: AssemblyCopyright("Copyright © jhsoft 2008")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/BLL/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/BLL/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/BLL/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/BLL/obj/Debug/BLL.csproj.FileListAbsolute.txt b/BLL/obj/Debug/BLL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..099e683 --- /dev/null +++ b/BLL/obj/Debug/BLL.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +G:\classManage\BLL\bin\Debug\BLL.dll +G:\classManage\BLL\bin\Debug\BLL.pdb +G:\classManage\BLL\bin\Debug\DAL.dll +G:\classManage\BLL\bin\Debug\DAL.pdb +G:\classManage\BLL\obj\Debug\ResolveAssemblyReference.cache +G:\classManage\BLL\obj\Debug\BLL.dll +G:\classManage\BLL\obj\Debug\BLL.pdb +H:\classManage\BLL\bin\Debug\BLL.dll +H:\classManage\BLL\bin\Debug\BLL.pdb +H:\classManage\BLL\bin\Debug\DAL.dll +H:\classManage\BLL\bin\Debug\DAL.pdb +H:\classManage\BLL\obj\Debug\ResolveAssemblyReference.cache +H:\classManage\BLL\obj\Debug\BLL.dll +H:\classManage\BLL\obj\Debug\BLL.pdb +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\BLL\bin\Debug\DAL.dll diff --git a/Backup/BLL/BLL.csproj b/Backup/BLL/BLL.csproj new file mode 100644 index 0000000..6201ba6 --- /dev/null +++ b/Backup/BLL/BLL.csproj @@ -0,0 +1,15 @@ + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {8E118A77-4017-4CD1-BCF4-380263D26609} + Library + Properties + BLL + BLL + v3.5 + 512 + diff --git a/Backup/BLL/ClassTree.cs b/Backup/BLL/ClassTree.cs new file mode 100644 index 0000000..53ac167 --- /dev/null +++ b/Backup/BLL/ClassTree.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using DAL; +using System.Data; + +namespace BLL +{ + /// + /// 业务逻辑层 + /// + public class ClassTree + { + public DataSet getAllClassName() diff --git a/Backup/BLL/Properties/AssemblyInfo.cs b/Backup/BLL/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2e3c4a9 --- /dev/null +++ b/Backup/BLL/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("BLL")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("jhsoft")] +[assembly: AssemblyProduct("BLL")] +[assembly: AssemblyCopyright("Copyright © jhsoft 2008")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Backup/DAL/ClassTree.cs b/Backup/DAL/ClassTree.cs new file mode 100644 index 0000000..3f12248 --- /dev/null +++ b/Backup/DAL/ClassTree.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Data; +using System.Data.SqlClient; + +namespace DAL +{ + public class ClassTree + { + //数据库配置修改并编译才能生效呢 //add by 51aspx.com + private string connectionString="Data Source=.;Initial Catalog=classTree;User ID=sa;pwd=sa;"; + /// + /// 根据sql返回DataSet diff --git a/Backup/DAL/DAL.csproj b/Backup/DAL/DAL.csproj new file mode 100644 index 0000000..c870090 --- /dev/null +++ b/Backup/DAL/DAL.csproj @@ -0,0 +1,15 @@ + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {D5CE9DF2-5F20-4862-9690-A6E111D83F0C} + Library + Properties + DAL + DAL + v3.5 + 512 + diff --git a/Backup/DAL/Properties/AssemblyInfo.cs b/Backup/DAL/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a13d208 --- /dev/null +++ b/Backup/DAL/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("DAL")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("jhsoft")] +[assembly: AssemblyProduct("DAL")] +[assembly: AssemblyCopyright("Copyright © jhsoft 2008")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Backup/Model/ClassTree.cs b/Backup/Model/ClassTree.cs new file mode 100644 index 0000000..f940894 --- /dev/null +++ b/Backup/Model/ClassTree.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Model +{ + /// + /// 分类目录实体 + /// + public class ClassTree + { + public ClassTree() + { } + diff --git a/Backup/Model/Model.csproj b/Backup/Model/Model.csproj new file mode 100644 index 0000000..c28c0f9 --- /dev/null +++ b/Backup/Model/Model.csproj @@ -0,0 +1,15 @@ + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {9FA31D79-7160-4B17-BF5B-3BA14CE2597D} + Library + Properties + Model + Model + v3.5 + 512 + diff --git a/Backup/Model/Properties/AssemblyInfo.cs b/Backup/Model/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..38b8af5 --- /dev/null +++ b/Backup/Model/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Model")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("jhsoft")] +[assembly: AssemblyProduct("Model")] +[assembly: AssemblyCopyright("Copyright © jhsoft 2008")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/DAL/.vs/DAL.csproj.dtbcache.json b/DAL/.vs/DAL.csproj.dtbcache.json new file mode 100644 index 0000000..d2af8e8 --- /dev/null +++ b/DAL/.vs/DAL.csproj.dtbcache.json @@ -0,0 +1 @@ +{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\DAL","ProjectFileName":"DAL.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"ClassTree.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"}],"References":[{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\DAL\\bin\\Debug\\DAL.dll","OutputItemRelativePath":"DAL.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\DAL\\bin\\Debug\\DAL.pdb","OutputItemRelativePath":"DAL.pdb"}],"CopyToOutputEntries":[]} diff --git a/DAL/ClassTree.cs b/DAL/ClassTree.cs new file mode 100644 index 0000000..de878b1 --- /dev/null +++ b/DAL/ClassTree.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Data; +using System.Data.SqlClient; + +namespace DAL +{ + public class ClassTree + { + //数据库配置修改并编译才能生效呢 //add by 51aspx.com + private string connectionString="Data Source=.;Initial Catalog=classTree;Integrated Security=True;"; + /// + /// 根据sql返回DataSet diff --git a/DAL/DAL.csproj b/DAL/DAL.csproj new file mode 100644 index 0000000..e153e04 --- /dev/null +++ b/DAL/DAL.csproj @@ -0,0 +1,15 @@ + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {D5CE9DF2-5F20-4862-9690-A6E111D83F0C} + Library + Properties + DAL + DAL + v4.8 + 512 + diff --git a/DAL/Properties/AssemblyInfo.cs b/DAL/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a13d208 --- /dev/null +++ b/DAL/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("DAL")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("jhsoft")] +[assembly: AssemblyProduct("DAL")] +[assembly: AssemblyCopyright("Copyright © jhsoft 2008")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/DAL/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/DAL/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/DAL/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/DAL/obj/Debug/DAL.csproj.FileListAbsolute.txt b/DAL/obj/Debug/DAL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..931aed7 --- /dev/null +++ b/DAL/obj/Debug/DAL.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +G:\classManage\DAL\obj\Debug\ResolveAssemblyReference.cache +G:\classManage\DAL\bin\Debug\DAL.dll +G:\classManage\DAL\bin\Debug\DAL.pdb +G:\classManage\DAL\obj\Debug\DAL.dll +G:\classManage\DAL\obj\Debug\DAL.pdb +H:\classManage\DAL\bin\Debug\DAL.dll +H:\classManage\DAL\bin\Debug\DAL.pdb +H:\classManage\DAL\obj\Debug\ResolveAssemblyReference.cache +H:\classManage\DAL\obj\Debug\DAL.dll +H:\classManage\DAL\obj\Debug\DAL.pdb +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\DAL\bin\Debug\DAL.dll +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\DAL\bin\Debug\DAL.pdb +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\DAL\obj\Debug\DAL.csproj.AssemblyReference.cache +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\DAL\obj\Debug\DAL.csproj.CoreCompileInputs.cache +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\DAL\obj\Debug\DAL.dll diff --git a/Model/.vs/Model.csproj.dtbcache.json b/Model/.vs/Model.csproj.dtbcache.json new file mode 100644 index 0000000..6f5446b --- /dev/null +++ b/Model/.vs/Model.csproj.dtbcache.json @@ -0,0 +1 @@ +{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\Model","ProjectFileName":"Model.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"ClassTree.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"}],"References":[{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\v3.5\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\Model\\bin\\Debug\\Model.dll","OutputItemRelativePath":"Model.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\10\\20241010\\update\\ClassTree\\Model\\bin\\Debug\\Model.pdb","OutputItemRelativePath":"Model.pdb"}],"CopyToOutputEntries":[]} diff --git a/Model/ClassTree.cs b/Model/ClassTree.cs new file mode 100644 index 0000000..f940894 --- /dev/null +++ b/Model/ClassTree.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Model +{ + /// + /// 分类目录实体 + /// + public class ClassTree + { + public ClassTree() + { } + diff --git a/Model/Model.csproj b/Model/Model.csproj new file mode 100644 index 0000000..1da9149 --- /dev/null +++ b/Model/Model.csproj @@ -0,0 +1,15 @@ + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {9FA31D79-7160-4B17-BF5B-3BA14CE2597D} + Library + Properties + Model + Model + v4.8 + 512 + diff --git a/Model/Properties/AssemblyInfo.cs b/Model/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..38b8af5 --- /dev/null +++ b/Model/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Model")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("jhsoft")] +[assembly: AssemblyProduct("Model")] +[assembly: AssemblyCopyright("Copyright © jhsoft 2008")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Model/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/Model/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/Model/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/Model/obj/Debug/Model.csproj.FileListAbsolute.txt b/Model/obj/Debug/Model.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d9b270a --- /dev/null +++ b/Model/obj/Debug/Model.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +G:\classManage\Model\bin\Debug\Model.dll +G:\classManage\Model\bin\Debug\Model.pdb +G:\classManage\Model\obj\Debug\ResolveAssemblyReference.cache +G:\classManage\Model\obj\Debug\Model.dll +G:\classManage\Model\obj\Debug\Model.pdb +H:\classManage\Model\bin\Debug\Model.dll +H:\classManage\Model\bin\Debug\Model.pdb +H:\classManage\Model\obj\Debug\ResolveAssemblyReference.cache +H:\classManage\Model\obj\Debug\Model.dll +H:\classManage\Model\obj\Debug\Model.pdb +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\Model\bin\Debug\Model.dll +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\Model\bin\Debug\Model.pdb +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\Model\obj\Debug\Model.csproj.AssemblyReference.cache +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\Model\obj\Debug\Model.csproj.CoreCompileInputs.cache +C:\Users\coder\Desktop\2024Code\10\20241010\update\ClassTree\Model\obj\Debug\Model.dll diff --git a/UpgradeLog.htm b/UpgradeLog.htm new file mode 100644 index 0000000..38421f0 --- /dev/null +++ b/UpgradeLog.htm @@ -0,0 +1,15 @@ + + + + Migration Report +