实例介绍
基于ORM模式开发的C/S版.NET框架,可在框架内自由添加其他功能,角色控制、组织机构已经写好。自由的添加业务功能吧。
【实例截图】
【核心代码】
4744302543364941211.rar
└── Logistics
├── bin
│ ├── DatabaseConnection.xml
│ ├── YYF.BaseORMappers.dll
│ ├── YYF.BaseORMappers.pdb
│ ├── YYF.Common.dll
│ ├── YYF.Common.pdb
│ ├── YYFDatabase.mdb
│ ├── YYF.DomainObjects.dll
│ ├── YYF.DomainObjects.pdb
│ ├── YYF.exe
│ ├── YYF.exe.config
│ ├── YYF.ORMappers.dll
│ ├── YYF.ORMappers.pdb
│ ├── YYF.pdb
│ ├── YYF.UI.dll
│ ├── YYF.UI.pdb
│ ├── YYF.vshost.exe
│ ├── YYF.vshost.exe.config
│ └── YYF.vshost.exe.manifest
├── Logistics.sln
├── Logistics.suo
├── YYF
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── DMS.Common.dll
│ │ ├── DMS.Common.pdb
│ │ ├── DMS.DomainObjects.dll
│ │ ├── DMS.DomainObjects.pdb
│ │ ├── DMS.exe
│ │ ├── DMS.pdb
│ │ ├── DMS.UI.exe
│ │ ├── DMS.UI.pdb
│ │ └── DMS.vshost.exe.manifest
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── Debug
│ │ ├── DMS.csproj.FileListAbsolute.txt
│ │ ├── DMS.csproj.GenerateResource.Cache
│ │ ├── DMS.Form1.resources
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── YYF.csproj.FileListAbsolute.txt
│ │ ├── YYF.csproj.GenerateResource.Cache
│ │ ├── YYF.exe
│ │ ├── YYF.Form1.resources
│ │ ├── YYF.pdb
│ │ └── YYF.Properties.Resources.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── YYF.csproj
│ └── YYF.csproj.user
├── YYF.BaseORMappers
│ ├── bin
│ │ └── Debug
│ │ ├── dmsDatabase.mdb
│ │ ├── YYF.BaseORMappers.dll
│ │ └── YYF.BaseORMappers.pdb
│ ├── Clients
│ │ ├── AccessProvider.cs
│ │ ├── OracleProvider.cs
│ │ └── SqlProvider.cs
│ ├── Command.cs
│ ├── IProvider.cs
│ ├── KQuery.cs
│ ├── Mapping
│ │ ├── BaseEntity.cs
│ │ ├── ColumnAttribute.cs
│ │ ├── Impl
│ │ │ └── AttributedMetaType.cs
│ │ ├── MetaManager.cs
│ │ ├── MetaParameter.cs
│ │ ├── MetaTable.cs
│ │ ├── MetaType.cs
│ │ └── TableAttribute.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DMS.BaseORMappers.csproj.FileListAbsolute.txt
│ │ ├── Refactor
│ │ │ └── DMS.BaseORMappers.dll
│ │ ├── TempPE
│ │ ├── YYF.BaseORMappers.csproj.FileListAbsolute.txt
│ │ ├── YYF.BaseORMappers.dll
│ │ └── YYF.BaseORMappers.pdb
│ ├── Parameter.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ProviderConfig.cs
│ ├── ProviderConfigItem.cs
│ ├── ProviderException.cs
│ ├── ProviderFactory.cs
│ ├── Transaction.cs
│ ├── YYF.BaseORMappers.csproj
│ └── YYF.BaseORMappers.csproj.user
├── YYF.Common
│ ├── bin
│ │ └── Debug
│ │ ├── YYF.Common.dll
│ │ └── YYF.Common.pdb
│ ├── ColorInfo.cs
│ ├── Configer
│ │ ├── ColorConfiguration.cs
│ │ ├── XmlConfiger.cs
│ │ └── XmlConfigurationManager.cs
│ ├── Controls
│ │ └── YYFDataGrid.cs
│ ├── ConvertHelper.cs
│ ├── DateTimeHelper.cs
│ ├── ErrorException
│ │ ├── BePressedForConfigException.cs
│ │ ├── ConfigSectionErrorException.cs
│ │ ├── ConfigSectionException.cs
│ │ ├── NotFoundConfigSectionException.cs
│ │ └── XmlConfigDocumentException.cs
│ ├── FileHelper.cs
│ ├── FileWatcher.cs
│ ├── Loger.cs
│ ├── MsgHelper.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DMS.Common.csproj.FileListAbsolute.txt
│ │ ├── Refactor
│ │ │ └── DMS.Common.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── YYF.Common.csproj.FileListAbsolute.txt
│ │ ├── YYF.Common.dll
│ │ └── YYF.Common.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Reflector.cs
│ ├── SortList.cs
│ ├── Validate
│ │ ├── CustomValidater.cs
│ │ ├── ErrorManager.cs
│ │ ├── TextValidater.cs
│ │ ├── UIValidater.cs
│ │ └── Validater.cs
│ ├── YYFColor.cs
│ ├── YYF.Common.csproj
│ └── YYF.Common.csproj.user
├── YYF.DomainObjects
│ ├── BasicInfo
│ │ ├── Dictionary.cs
│ │ ├── Edition.cs
│ │ ├── Module.cs
│ │ ├── Role.cs
│ │ └── UserInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── YYF.BaseORMappers.dll
│ │ ├── YYF.BaseORMappers.pdb
│ │ ├── YYF.Common.dll
│ │ ├── YYF.Common.pdb
│ │ ├── YYF.DomainObjects.dll
│ │ ├── YYF.DomainObjects.pdb
│ │ ├── YYF.ORMappers.dll
│ │ └── YYF.ORMappers.pdb
│ ├── CurrentUser.cs
│ ├── DomainObject.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DMS.DomainObjects.csproj.FileListAbsolute.txt
│ │ ├── Refactor
│ │ │ └── DMS.DomainObjects.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── YYF.DomainObjects.csproj.FileListAbsolute.txt
│ │ ├── YYF.DomainObjects.dll
│ │ └── YYF.DomainObjects.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── YYF.DomainObjects.csproj
│ └── YYF.DomainObjects.csproj.user
├── YYF.ORMappers
│ ├── BasicInfo
│ │ ├── DictionaryDA.cs
│ │ ├── EditionDA.cs
│ │ ├── EditionModuleDA.cs
│ │ ├── ModuleDA.cs
│ │ ├── RoleDA.cs
│ │ ├── RoleModuleDA.cs
│ │ └── UserInfoDA.cs
│ ├── bin
│ │ └── Debug
│ │ ├── YYF.BaseORMappers.dll
│ │ ├── YYF.BaseORMappers.pdb
│ │ ├── YYF.Common.dll
│ │ ├── YYF.Common.pdb
│ │ ├── YYF.ORMappers.dll
│ │ └── YYF.ORMappers.pdb
│ ├── obj
│ │ └── Debug
│ │ ├── DMS.ORMappers.csproj.FileListAbsolute.txt
│ │ ├── Refactor
│ │ │ └── DMS.ORMappers.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── YYF.ORMappers.csproj.FileListAbsolute.txt
│ │ ├── YYF.ORMappers.dll
│ │ └── YYF.ORMappers.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── YYF.ORMappers.csproj
└── YYF.UI
├── app.config
├── bin
│ └── Debug
│ ├── YYF.BaseORMappers.dll
│ ├── YYF.BaseORMappers.pdb
│ ├── YYF.Common.dll
│ ├── YYF.Common.pdb
│ ├── YYF.DomainObjects.dll
│ ├── YYF.DomainObjects.pdb
│ ├── YYF.ORMappers.dll
│ ├── YYF.ORMappers.pdb
│ ├── YYF.UI.dll
│ ├── YYF.UI.dll.config
│ └── YYF.UI.pdb
├── Common
│ ├── BaseForm.cs
│ ├── BaseForm.Designer.cs
│ ├── ChildrenForm.cs
│ ├── CommandsForm.cs
│ ├── CommandType.cs
│ ├── CommandVisibleStateManager.cs
│ ├── CommonModule.cs
│ ├── CRUDListForm.cs
│ ├── CRUDListForm.Designer.cs
│ ├── DataGridDictionary.cs
│ ├── DataGridStyleHelper.cs
│ ├── DetailForm.cs
│ ├── DetailForm.Designer.cs
│ ├── DetailForm.resx
│ ├── DMSImageManager.cs
│ ├── IModule.cs
│ ├── ListForm.cs
│ ├── ListForm.Designer.cs
│ ├── ListForm.resx
│ ├── ToolBarCommand.cs
│ └── ToolStripButtonBuilder.cs
├── CustomerControl
│ ├── DMSButton.cs
│ ├── DMSCombox.cs
│ ├── DMSDateTimePicker.cs
│ ├── DMSLabel.cs
│ ├── DMSMutilineTextbox.cs
│ ├── DMSTextBox.cs
│ └── DMSTreeView.cs
├── MainForm.cs
├── MainForm.Designer.cs
├── MainForm.resx
├── obj
│ └── Debug
│ ├── DMS.UI.Common.DetailForm.resources
│ ├── DMS.UI.Common.ListForm.resources
│ ├── DMS.UI.csproj.FileListAbsolute.txt
│ ├── DMS.UI.csproj.GenerateResource.Cache
│ ├── DMS.UI.MainForm.resources
│ ├── DMS.UI.SystemManage.DictionaryManage.AddDictionaryForm.resources
│ ├── DMS.UI.SystemManage.DictionaryManage.DictionaryFormBase.resources
│ ├── DMS.UI.SystemManage.DictionaryManage.EditDictionaryForm.resources
│ ├── DMS.UI.SystemManage.DictionaryManage.ViewDictionaryForm.resources
│ ├── DMS.UI.SystemManage.EditionManage.AddEditionForm.resources
│ ├── DMS.UI.SystemManage.EditionManage.EditEditionForm.resources
│ ├── DMS.UI.SystemManage.EditionManage.EditionFormBase.resources
│ ├── DMS.UI.SystemManage.EditionManage.EditionMainForm.resources
│ ├── DMS.UI.SystemManage.EditionManage.ViewEditionForm.resources
│ ├── DMS.UI.SystemManage.LoginForm.resources
│ ├── DMS.UI.SystemManage.ModuleManage.AddModuleForm.resources
│ ├── DMS.UI.SystemManage.ModuleManage.EditModuleForm.resources
│ ├── DMS.UI.SystemManage.ModuleManage.ModuleFormBase.resources
│ ├── DMS.UI.SystemManage.ModuleManage.ModuleMainForm.resources
│ ├── DMS.UI.SystemManage.ModuleManage.ViewModuleForm.resources
│ ├── DMS.UI.SystemManage.RoleManage.AddRoleForm.resources
│ ├── DMS.UI.SystemManage.RoleManage.EditRoleForm.resources
│ ├── DMS.UI.SystemManage.RoleManage.RoleFormBase.resources
│ ├── DMS.UI.SystemManage.RoleManage.ViewRoleForm.resources
│ ├── DMS.UI.SystemManage.UserForm.resources
│ ├── DMS.UI.SystemManage.UserManage.AddUserForm.resources
│ ├── DMS.UI.SystemManage.UserManage.EditUserForm.resources
│ ├── DMS.UI.SystemManage.UserManage.UserFormBase.resources
│ ├── DMS.UI.SystemManage.UserManage.UserMainForm.resources
│ ├── Refactor
│ │ └── DMS.UI.dll
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ │ ├── dmsDatabaseDataSet.Designer.cs.dll
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── YYF.UI.Common.DetailForm.resources
│ ├── YYF.UI.Common.ListForm.resources
│ ├── YYF.UI.csproj.FileListAbsolute.txt
│ ├── YYF.UI.csproj.GenerateResource.Cache
│ ├── YYF.UI.dll
│ ├── YYF.UI.MainForm.resources
│ ├── YYF.UI.pdb
│ ├── YYF.UI.Properties.Resources.resources
│ ├── YYF.UI.SystemManage.DictionaryManage.AddDictionaryForm.resources
│ ├── YYF.UI.SystemManage.DictionaryManage.DictionaryFormBase.resources
│ ├── YYF.UI.SystemManage.DictionaryManage.EditDictionaryForm.resources
│ ├── YYF.UI.SystemManage.DictionaryManage.ViewDictionaryForm.resources
│ ├── YYF.UI.SystemManage.EditionManage.AddEditionForm.resources
│ ├── YYF.UI.SystemManage.EditionManage.EditEditionForm.resources
│ ├── YYF.UI.SystemManage.EditionManage.EditionFormBase.resources
│ ├── YYF.UI.SystemManage.EditionManage.EditionMainForm.resources
│ ├── YYF.UI.SystemManage.EditionManage.ViewEditionForm.resources
│ ├── YYF.UI.SystemManage.LoginForm.resources
│ ├── YYF.UI.SystemManage.ModuleManage.AddModuleForm.resources
│ ├── YYF.UI.SystemManage.ModuleManage.EditModuleForm.resources
│ ├── YYF.UI.SystemManage.ModuleManage.ModuleFormBase.resources
│ ├── YYF.UI.SystemManage.ModuleManage.ModuleMainForm.resources
│ ├── YYF.UI.SystemManage.ModuleManage.ViewModuleForm.resources
│ ├── YYF.UI.SystemManage.RoleManage.AddRoleForm.resources
│ ├── YYF.UI.SystemManage.RoleManage.EditRoleForm.resources
│ ├── YYF.UI.SystemManage.RoleManage.RoleFormBase.resources
│ ├── YYF.UI.SystemManage.RoleManage.ViewRoleForm.resources
│ ├── YYF.UI.SystemManage.UserForm.resources
│ ├── YYF.UI.SystemManage.UserManage.AddUserForm.resources
│ ├── YYF.UI.SystemManage.UserManage.EditUserForm.resources
│ ├── YYF.UI.SystemManage.UserManage.UserFormBase.resources
│ └── YYF.UI.SystemManage.UserManage.UserMainForm.resources
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Resources
│ ├── 2.gif
│ ├── background.jpg
│ ├── clearshuju.gif
│ ├── daochumoban.gif
│ ├── daorushuju.gif
│ ├── download.gif
│ ├── m01_0021.gif
│ ├── module.gif
│ ├── module_select.gif
│ ├── new_01.gif
│ ├── new_02.gif
│ ├── new_03.gif
│ ├── new_04.gif
│ ├── new_05.gif
│ ├── new_06.gif
│ ├── new_07.gif
│ ├── new_08.gif
│ ├── new_09.gif
│ ├── new_10.gif
│ ├── new_11.gif
│ ├── new_12.gif
│ ├── new_13.gif
│ ├── new_14.gif
│ ├── new_15.gif
│ ├── new_16.gif
│ ├── new_17.gif
│ ├── new_18.gif
│ ├── new_19.gif
│ ├── new_20.gif
│ ├── new_21a.gif
│ ├── new_22.gif
│ ├── new_23.gif
│ ├── new_24a.gif
│ ├── new_25.gif
│ ├── new_26.gif
│ ├── new_27.gif
│ ├── new_28.gif
│ ├── new_29.gif
│ ├── new_30.gif
│ ├── taskFormOne.bmp
│ ├── template.gif
│ ├── ToolButton_ExportExcel.bmp
│ └── tubiao.gif
├── SystemManage
│ ├── DictionaryManage
│ │ ├── AddDictionaryForm.cs
│ │ ├── AddDictionaryForm.Designer.cs
│ │ ├── AddDictionaryForm.resx
│ │ ├── DictionaryFormBase.cs
│ │ ├── DictionaryFormBase.Designer.cs
│ │ ├── DictionaryFormBase.resx
│ │ ├── DictionaryFunctions.cs
│ │ ├── DictionaryMainForm.cs
│ │ ├── DictionaryMainForm.Designer.cs
│ │ ├── DictionaryRunner.cs
│ │ ├── EditDictionaryForm.cs
│ │ ├── EditDictionaryForm.Designer.cs
│ │ ├── EditDictionaryForm.resx
│ │ ├── ViewDictionaryForm.cs
│ │ ├── ViewDictionaryForm.Designer.cs
│ │ └── ViewDictionaryForm.resx
│ ├── EditionManage
│ │ ├── AddEditionForm.cs
│ │ ├── AddEditionForm.Designer.cs
│ │ ├── AddEditionForm.resx
│ │ ├── EditEditionForm.cs
│ │ ├── EditEditionForm.Designer.cs
│ │ ├── EditEditionForm.resx
│ │ ├── EditionFormBase.cs
│ │ ├── EditionFormBase.Designer.cs
│ │ ├── EditionFormBase.resx
│ │ ├── EditionFunctions.cs
│ │ ├── EditionMainForm.cs
│ │ ├── EditionMainForm.Designer.cs
│ │ ├── EditionMainForm.resx
│ │ ├── EditionRunner.cs
│ │ ├── ViewEditionForm.cs
│ │ ├── ViewEditionForm.Designer.cs
│ │ └── ViewEditionForm.resx
│ ├── LoginForm.cs
│ ├── LoginForm.Designer.cs
│ ├── LoginForm.resx
│ ├── ModuleManage
│ │ ├── AddModuleForm.cs
│ │ ├── AddModuleForm.Designer.cs
│ │ ├── AddModuleForm.resx
│ │ ├── EditModuleForm.cs
│ │ ├── EditModuleForm.Designer.cs
│ │ ├── EditModuleForm.resx
│ │ ├── ModuleFormBase.cs
│ │ ├── ModuleFormBase.Designer.cs
│ │ ├── ModuleFormBase.resx
│ │ ├── ModuleFunctions.cs
│ │ ├── ModuleMainForm.cs
│ │ ├── ModuleMainForm.Designer.cs
│ │ ├── ModuleMainForm.resx
│ │ ├── ModuleRunner.cs
│ │ ├── ViewModuleForm.cs
│ │ ├── ViewModuleForm.Designer.cs
│ │ └── ViewModuleForm.resx
│ ├── RoleManage
│ │ ├── AddRoleForm.cs
│ │ ├── AddRoleForm.Designer.cs
│ │ ├── AddRoleForm.resx
│ │ ├── EditRoleForm.cs
│ │ ├── EditRoleForm.Designer.cs
│ │ ├── EditRoleForm.resx
│ │ ├── RoleFormBase.cs
│ │ ├── RoleFormBase.Designer.cs
│ │ ├── RoleFormBase.resx
│ │ ├── RoleFunctions.cs
│ │ ├── RoleMainForm.cs
│ │ ├── RoleMainForm.Designer.cs
│ │ ├── RoleRunner.cs
│ │ ├── ViewRoleForm.cs
│ │ ├── ViewRoleForm.Designer.cs
│ │ └── ViewRoleForm.resx
│ ├── UserForm.cs
│ ├── UserForm.Designer.cs
│ ├── UserForm.resx
│ └── UserManage
│ ├── AddUserForm.cs
│ ├── AddUserForm.Designer.cs
│ ├── AddUserForm.resx
│ ├── EditUserForm.cs
│ ├── EditUserForm.Designer.cs
│ ├── EditUserForm.resx
│ ├── UserFormBase.cs
│ ├── UserFormBase.Designer.cs
│ ├── UserFormBase.resx
│ ├── UserFunctions.cs
│ ├── UserMainForm.cs
│ ├── UserMainForm.Designer.cs
│ ├── UserMainForm.resx
│ ├── UserRunner.cs
│ ├── ViewUserForm.cs
│ └── ViewUserForm.Designer.cs
├── YYF.UI.csproj
└── YYF.UI.csproj.user
68 directories, 409 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论