实例介绍
药店管理系统源码实例,学习开发都有帮助
【实例截图】
【核心代码】
92007236-7ecf-4063-877a-0ff657ec9d1b
├── AgileEAS.NET平台-文档
│ ├── AgileEAS.NET平台对象设计器使用教程.pdf
│ ├── AgileEAS.NET平台开发指南.pdf
│ ├── AgileEAS.NET平台技术说明书 V4.0.pdf
│ ├── AgileEAS.NET平台系统构成说明书.pdf
│ ├── AgileEAS.NET平台系统管理使用教程.pdf
│ ├── AgileEAS.Net数据库设计说明书(SQLServer).pdf
│ ├── AgileEAS.NET类库参考手册.chm
│ └── AgileEAS数据库还原及相关设计说明.pdf
├── build-all.bat
├── DB_51aspx
│ ├── DrugShop_log.ldf
│ └── DrugShop.mdf
├── DrugShop.AppStart
│ ├── App.config
│ ├── DrugShop.Appstart.csproj
│ ├── DrugShop.Appstart.csproj.user
│ ├── obj
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── DrugShop.Appstart.csproj.FileListAbsolute.txt
│ │ ├── DrugShop.Appstart.exe
│ │ ├── DrugShop.Appstart.pdb
│ │ ├── EAS.Develop.Properties.Resources.resources
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── DrugShop.BLL
│ ├── BaseServiceObject.cs
│ ├── DateTimeService.cs
│ ├── DrugDictService.cs
│ ├── DrugHouseChangePriceService.cs
│ ├── DrugHouseDrugBackService.cs
│ ├── DrugHouseDrugInService.cs
│ ├── DrugLostService.cs
│ ├── DrugOutService.cs
│ ├── DrugPlanInService.cs
│ ├── DrugShop.BLL.csproj
│ ├── DrugShop.BLL.csproj.user
│ ├── DrugStoreCountService.cs
│ ├── DrugStoreService.cs
│ ├── DrugTypeService.cs
│ ├── IdentityService.cs
│ ├── obj
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── DrugShop.BLL.csproj.FileListAbsolute.txt
│ │ ├── DrugShop.BLL.dll
│ │ ├── DrugShop.BLL.pdb
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── ProviderService.cs
├── DrugShop.DAL
│ ├── CPrice.cs
│ ├── Dict.cs
│ ├── DrugShop.DAL.csproj
│ ├── DrugShop.DAL.csproj.user
│ ├── DrugType.cs
│ ├── Employee.cs
│ ├── Generat
│ │ ├── CPrice.Generator.cs
│ │ ├── Dict.Generator.cs
│ │ ├── DrugType.Generator.cs
│ │ ├── Employee.Generator.cs
│ │ ├── Inventory.Generator.cs
│ │ ├── Lost.Generator.cs
│ │ ├── PBack.Generator.cs
│ │ ├── PIn.Generator.cs
│ │ ├── Plan.Generator.cs
│ │ ├── Provider.Generator.cs
│ │ ├── SBack.Generator.cs
│ │ ├── SOut.Generator.cs
│ │ └── Store.Generator.cs
│ ├── Inventory.cs
│ ├── Lost.cs
│ ├── obj
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── DrugShop.DAL.csproj.FileListAbsolute.txt
│ │ ├── DrugShop.DAL.dll
│ │ ├── DrugShop.DAL.pdb
│ │ └── ResolveAssemblyReference.cache
│ ├── PBack.cs
│ ├── PIn.cs
│ ├── Plan.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Provider.cs
│ ├── Report
│ │ ├── DrugInOut.cs
│ │ └── DrugInOut.Generator.cs
│ ├── SBack.cs
│ ├── SOut.cs
│ └── Store.cs
├── DrugShop.Res
│ ├── AboutForm.cs
│ ├── AboutForm.Designer.cs
│ ├── AboutForm.resx
│ ├── Banner.cs
│ ├── Banner.Designer.cs
│ ├── Banner.resx
│ ├── DrugShop.Res.csproj
│ ├── DrugShop.Res.csproj.user
│ ├── Helper
│ │ ├── CacheHelper.cs
│ │ ├── ControlFocusHelper.cs
│ │ └── DataConvertHelper.cs
│ ├── LoginForm2.cs
│ ├── LoginForm2.Designer.cs
│ ├── LoginForm2.resx
│ ├── LoginForm.cs
│ ├── LoginForm.Designer.cs
│ ├── LoginForm.resx
│ ├── obj
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── DrugShop.Res.AboutForm.resources
│ │ ├── DrugShop.Res.Banner.resources
│ │ ├── DrugShop.Res.csproj.FileListAbsolute.txt
│ │ ├── DrugShop.Res.dll
│ │ ├── DrugShop.Res.LoginForm2.resources
│ │ ├── DrugShop.Res.LoginForm.resources
│ │ ├── DrugShop.Res.Properties.Resources.resources
│ │ ├── DrugShop.Res.Welcome.resources
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Properties
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ ├── Resources
│ │ ├── about.jpg
│ │ ├── agile_logo.jpg
│ │ ├── ban1.jpg
│ │ ├── bj.jpg
│ │ ├── His.ico
│ │ ├── left.jpg
│ │ ├── right.jpg
│ │ ├── top2.jpg
│ │ └── 药店图标.jpg
│ ├── Resources.cs
│ ├── Welcome.cs
│ └── Welcome.resx
├── DrugShop.sln
├── DrugShop.suo
├── DrugShop.WinUI
│ ├── BaseInfo
│ │ ├── DrugDict
│ │ │ ├── DrugDictEditor.cs
│ │ │ ├── DrugDictEditor.Designer.cs
│ │ │ ├── DrugDictEditor.resx
│ │ │ ├── DrugDictList.cs
│ │ │ ├── DrugDictList.Designer.cs
│ │ │ ├── DrugDictList.resx
│ │ │ ├── DrugUnit.cs
│ │ │ ├── DrugUnit.Designer.cs
│ │ │ └── DrugUnit.resx
│ │ ├── DrugType
│ │ │ ├── DrugTypeEditor.cs
│ │ │ ├── DrugTypeEditor.Designer.cs
│ │ │ ├── DrugTypeEditor.resx
│ │ │ ├── DrugTypeListControl.cs
│ │ │ ├── DrugTypeListControl.Designer.cs
│ │ │ └── DrugTypeListControl.resx
│ │ └── Provider
│ │ ├── ProvideListControl.cs
│ │ ├── ProvideListControl.Designer.cs
│ │ ├── ProvideListControl.resx
│ │ ├── ProviderEditor.cs
│ │ ├── ProviderEditor.Designer.cs
│ │ └── ProviderEditor.resx
│ ├── BaseReport
│ │ ├── BaseReport.cs
│ │ ├── BaseReport.Designer.cs
│ │ ├── BaseReport.resx
│ │ ├── ConditionControl.cs
│ │ └── ConditionControl.Designer.cs
│ ├── CommonUI
│ │ ├── BaseForm.cs
│ │ ├── BaseForm.Designer.cs
│ │ ├── BaseUserControl.cs
│ │ ├── BaseUserControl.Designer.cs
│ │ ├── ProviderSelect.cs
│ │ ├── ProviderSelect.Designer.cs
│ │ └── ProviderSelect.resx
│ ├── DataGridViewHelper.cs
│ ├── DrugBackCustom.cs
│ ├── DrugBackCustom.Designer.cs
│ ├── DrugBackCustom.resx
│ ├── DrugBackProvider.cs
│ ├── DrugBackProvider.Designer.cs
│ ├── DrugBackProvider.resx
│ ├── DrugChangePrice.cs
│ ├── DrugChangePrice.Designer.cs
│ ├── DrugChangePrice.resx
│ ├── DrugIn.cs
│ ├── DrugIn.Designer.cs
│ ├── DrugIn.resx
│ ├── DrugLost.cs
│ ├── DrugLost.Designer.cs
│ ├── DrugLost.resx
│ ├── DrugSale.cs
│ ├── DrugSale.Designer.cs
│ ├── DrugSale.resx
│ ├── DrugShop.WinUI.csproj
│ ├── DrugShop.WinUI.csproj.user
│ ├── DrugStoreAdjust.cs
│ ├── DrugStoreAdjust.Designer.cs
│ ├── DrugStoreAdjust.resx
│ ├── DrugStoreCount.cs
│ ├── DrugStoreCount.Designer.cs
│ ├── DrugStoreCount.resx
│ ├── Helper
│ │ ├── DataBindHelper.cs
│ │ └── DataConvertHelper.cs
│ ├── mssccprj.scc
│ ├── NumberInput
│ │ ├── BackNumberInput.cs
│ │ ├── BackNumberInput.Designer.cs
│ │ ├── BackNumberInput.resx
│ │ ├── DrugInput.cs
│ │ ├── DrugInput.Designer.cs
│ │ ├── DrugInput.resx
│ │ ├── NumberInput.cs
│ │ ├── NumberInput.Designer.cs
│ │ ├── NumberInput.resx
│ │ ├── SalePriceInput.cs
│ │ ├── SalePriceInput.Designer.cs
│ │ ├── SalePriceInput.resx
│ │ ├── StoreCountNumberInput.cs
│ │ ├── StoreCountNumberInput.Designer.cs
│ │ └── StoreCountNumberInput.resx
│ ├── obj
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── DrugShop.UI.BackNumberInput.resources
│ │ ├── DrugShop.UI.BaseReport.resources
│ │ ├── DrugShop.UI.DrugBackCustomQuery.resources
│ │ ├── DrugShop.UI.DrugBackCustom.resources
│ │ ├── DrugShop.UI.DrugBackProviderQuery.resources
│ │ ├── DrugShop.UI.DrugBackProvider.resources
│ │ ├── DrugShop.UI.DrugChangePriceQuery.resources
│ │ ├── DrugShop.UI.DrugChangePrice.resources
│ │ ├── DrugShop.UI.DrugDictEditor.resources
│ │ ├── DrugShop.UI.DrugDictList.resources
│ │ ├── DrugShop.UI.DrugInOutCount.resources
│ │ ├── DrugShop.UI.DrugInOutSearchControl.resources
│ │ ├── DrugShop.UI.DrugInput.resources
│ │ ├── DrugShop.UI.DrugInQuery.resources
│ │ ├── DrugShop.UI.DrugIn.resources
│ │ ├── DrugShop.UI.DrugInSeachControl.resources
│ │ ├── DrugShop.UI.DrugLimitQuery.resources
│ │ ├── DrugShop.UI.DrugLostQuery.resources
│ │ ├── DrugShop.UI.DrugLost.resources
│ │ ├── DrugShop.UI.DrugSaleQuery.resources
│ │ ├── DrugShop.UI.DrugSale.resources
│ │ ├── DrugShop.UI.DrugStoreAdjust.resources
│ │ ├── DrugShop.UI.DrugStoreCount.resources
│ │ ├── DrugShop.UI.DrugStoreQuery.resources
│ │ ├── DrugShop.UI.DrugTypeEditForm.resources
│ │ ├── DrugShop.UI.DrugTypeList.resources
│ │ ├── DrugShop.UI.DrugUnit.resources
│ │ ├── DrugShop.UI.NumberInput.resources
│ │ ├── DrugShop.UI.ProvideListControl.resources
│ │ ├── DrugShop.UI.ProviderEditorForm.resources
│ │ ├── DrugShop.UI.ProviderSelect.resources
│ │ ├── DrugShop.UI.SalePriceInput.resources
│ │ ├── DrugShop.UI.StoreCountNumberInput.resources
│ │ ├── DrugShop.UI.StoreCountQuery.resources
│ │ ├── DrugShop.WinUI.csproj.FileListAbsolute.txt
│ │ ├── DrugShop.WinUI.dll
│ │ ├── DrugShop.WinUI.pdb
│ │ ├── DrugShop.WinUI.Properties.Resources.resources
│ │ ├── DrugShop.WinUI.RDL.RDLResource.resources
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ ├── Properties.Resources.Designer.cs.dll
│ │ └── RDL.RDLResource.Designer.cs.dll
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── DataSources
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugBackDepart.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugBackDepartExv.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugBackProviderExv.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugChangePrice.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugIn.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugInExBack.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugInList.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugLostApplyEx1.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugLostApplyEx.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugLost.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugLostExvList.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugOut.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugOutExBack.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugPlan.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugStore1.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugStore2.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugStore3.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugStore4.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugStore5.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugStoreCount.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.DrugStore.datasource
│ │ │ ├── AgileHIS.DrugHouse.DAL.StorePlan.datasource
│ │ │ ├── Common.DAL.Provider.datasource
│ │ │ ├── DrugDict.DAL.Dm_dict.datasource
│ │ │ ├── DrugHouse.DAL.Dm_rcback.datasource
│ │ │ ├── DrugHouse.DAL.Dm_rcount.datasource
│ │ │ ├── DrugHouse.DAL.Dm_rpback.datasource
│ │ │ ├── DrugHouse.DAL.DrugType.datasource
│ │ │ ├── DrugStore.DAL.Dm_rcprice.datasource
│ │ │ ├── DrugStore.DAL.Dm_rin.datasource
│ │ │ ├── DrugStore.DAL.Dm_rlost.datasource
│ │ │ ├── DrugStore.DAL.Dm_rout.datasource
│ │ │ ├── DrugStore.DAL.Dm_rplan.datasource
│ │ │ └── DrugStore.DAL.Dm_rstore.datasource
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ └── vssver2.scc
│ ├── Query
│ │ ├── DrugBackCustomQuery.cs
│ │ ├── DrugBackCustomQuery.Designer.cs
│ │ ├── DrugBackCustomQuery.resx
│ │ ├── DrugBackProviderQuery.cs
│ │ ├── DrugBackProviderQuery.Designer.cs
│ │ ├── DrugBackProviderQuery.resx
│ │ ├── DrugChangePriceQuery.cs
│ │ ├── DrugChangePriceQuery.Designer.cs
│ │ ├── DrugChangePriceQuery.resx
│ │ ├── DrugInQuery.cs
│ │ ├── DrugInQuery.Designer.cs
│ │ ├── DrugInQuery.resx
│ │ ├── DrugLimitQuery.cs
│ │ ├── DrugLimitQuery.Designer.cs
│ │ ├── DrugLimitQuery.resx
│ │ ├── DrugLostQuery.cs
│ │ ├── DrugLostQuery.Designer.cs
│ │ ├── DrugLostQuery.resx
│ │ ├── DrugSaleQuery.cs
│ │ ├── DrugSaleQuery.Designer.cs
│ │ ├── DrugSaleQuery.resx
│ │ ├── DrugStoreQuery.cs
│ │ ├── DrugStoreQuery.Designer.cs
│ │ ├── DrugStoreQuery.resx
│ │ ├── StoreCountQuery.cs
│ │ ├── StoreCountQuery.designer.cs
│ │ └── StoreCountQuery.resx
│ ├── RDL
│ │ ├── Files
│ │ │ ├── 药品入库报表.xml
│ │ │ └── 药店收支报表.xml
│ │ ├── RDLHelper.cs
│ │ ├── RDLResource.Designer.cs
│ │ └── RDLResource.resx
│ ├── Report
│ │ ├── DrugInOutRpt.cs
│ │ ├── DrugInOutRpt.Designer.cs
│ │ ├── DrugInOutRpt.resx
│ │ ├── DrugInRpt.cs
│ │ └── DrugInRpt.Designer.cs
│ ├── SeachControl
│ │ ├── DrugInOutSearchControl.cs
│ │ ├── DrugInOutSearchControl.Designer.cs
│ │ ├── DrugInOutSearchControl.resx
│ │ ├── DrugInSeachControl.cs
│ │ ├── DrugInSeachControl.Designer.cs
│ │ └── DrugInSeachControl.resx
│ ├── StoreHouse.UI.csproj.vspscc
│ ├── vssver2.scc
│ └── WLHIS.DrugHouse.UI.suo
├── Publish
│ ├── designerstate.xml
│ ├── DrugShop.Appstart.exe
│ ├── DrugShop.Appstart.exe.config
│ ├── DrugShop.Appstart.pdb
│ ├── DrugShop.Appstart.vshost.exe
│ ├── DrugShop.Appstart.vshost.exe.config
│ ├── DrugShop.Appstart.vshost.exe.manifest
│ ├── DrugShop.BLL.dll
│ ├── DrugShop.BLL.pdb
│ ├── DrugShop.DAL.dll
│ ├── DrugShop.DAL.pdb
│ ├── DrugShop.Res.dll
│ ├── DrugShop.WinUI.dll
│ ├── DrugShop.WinUI.pdb
│ ├── EAS.Data.DataUIMapper.dll
│ ├── EAS.Data.dll
│ ├── EAS.Data.xml
│ ├── EAS.Develop.Debuger.dll
│ ├── EAS.Distributed.Client.dll
│ ├── EAS.Distributed.Client.XML
│ ├── EAS.Distributed.Contracts.dll
│ ├── EAS.Distributed.Contracts.XML
│ ├── EAS.Distributed.ServiceHost.dll
│ ├── EAS.Distributed.WebService.dll
│ ├── EAS.Explorer.AddIn.Assist.dll
│ ├── EAS.Explorer.BLL.dll
│ ├── EAS.Explorer.DAL.Interface.dll
│ ├── EAS.Explorer.DAL.Oracle.dll
│ ├── EAS.Explorer.DAL.SQLServer.dll
│ ├── EAS.Explorer.dll
│ ├── EAS.Explorer.Res.dll
│ ├── EAS.Explorer.WebClient.dll
│ ├── EAS.Explorer.Web.dll
│ ├── EAS.Explorer.Web.XML
│ ├── EAS.Explorer.WPF.Res.dll
│ ├── EAS.Explorer.XML
│ ├── EAS.MicroKernel.dll
│ ├── EAS.MicroKernel.XML
│ ├── EAS.OracleClient.dll
│ ├── EAS.OracleClient.XML
│ ├── EAS.OrmDesigner.exe
│ ├── EAS.OrmDesigner.exe.config
│ ├── EAS.Report.Controls.dll
│ ├── EAS.Report.Controls.XML
│ ├── EAS.SmartUpdateConfig.exe
│ ├── EAS.SmartUpdate.Config.exe.config
│ ├── EAS.SmartUpdateConfig.exe.config
│ ├── EAS.SmartUpdater.exe
│ ├── EAS.Web.xml
│ ├── EAS.WinClient.exe
│ ├── EAS.WinClient.exe.config
│ ├── EAS.Windows.Controls.dll
│ ├── EAS.Windows.dll
│ ├── EAS.Windows.GuiTemplate.dll
│ ├── EAS.Windows.XML
│ ├── EAS.WinService.Kernel.XML
│ ├── Explore.DAL.dll
│ ├── Fireball.CodeEditor.dll
│ ├── Fireball.CodeEditor.SyntaxFiles.dll
│ ├── Fireball.Core.dll
│ ├── Fireball.SyntaxDocument.dll
│ ├── Fireball.Win32.dll
│ ├── Fireball.Windows.Forms.dll
│ ├── itextsharp.dll
│ ├── logs
│ │ └── 20110620.log
│ ├── Microsoft.Data.ConnectionUI.Dialog.dll
│ ├── Microsoft.Data.ConnectionUI.dll
│ ├── NetronGraphLib.dll
│ ├── RdlEngine.dll
│ ├── RdlViewer.dll
│ ├── ReportDesigner.dll
│ ├── ReportDesigner.Start.exe
│ ├── ReportDesigner.Start.exe.config
│ ├── SmartUpdate.xml
│ └── update.ini
├── 药店系统-使用版本更新说明.txt
├── 药店系统-使用说明.txt
├── 药店系统-发布版本
│ ├── AppServer
│ │ ├── Bin
│ │ │ ├── DrugShop.BLL.dll
│ │ │ ├── DrugShop.DAL.dll
│ │ │ ├── EAS.Data.dll
│ │ │ ├── EAS.Distributed.Client.dll
│ │ │ ├── EAS.Distributed.Contracts.dll
│ │ │ ├── EAS.Distributed.ServiceHost.dll
│ │ │ ├── EAS.Explorer.BLL.dll
│ │ │ ├── EAS.Explorer.DAL.Interface.dll
│ │ │ ├── EAS.Explorer.DAL.Oracle.dll
│ │ │ ├── EAS.Explorer.DAL.SQLServer.dll
│ │ │ ├── EAS.Explorer.dll
│ │ │ ├── EAS.MicroKernel.dll
│ │ │ ├── EAS.OracleClient.dll
│ │ │ ├── EAS.WindowsService.exe.config
│ │ │ ├── EAS.WindowsService.InstallLog
│ │ │ ├── EAS.WindowsService.InstallState
│ │ │ ├── install.bat
│ │ │ ├── logs
│ │ │ │ ├── 20110102.log
│ │ │ │ ├── 20110103.log
│ │ │ │ ├── 20110104.log
│ │ │ │ ├── 20110521.log
│ │ │ │ └── 20110522.log
│ │ │ ├── unstall.bat
│ │ │ └── 安装说明.txt
│ │ ├── xClient
│ │ │ ├── Config
│ │ │ │ └── SmartUpdate.xml
│ │ │ └── Files
│ │ │ ├── DrugShop.BLL.dll
│ │ │ ├── DrugShop.DAL.dll
│ │ │ ├── DrugShop.Res.dll
│ │ │ ├── DrugShop.WinUI.dll
│ │ │ ├── EAS.Data.DataUIMapper.dll
│ │ │ ├── EAS.Data.dll
│ │ │ ├── EAS.Develop.Debuger.dll
│ │ │ ├── EAS.Distributed.Client.dll
│ │ │ ├── EAS.Distributed.Contracts.dll
│ │ │ ├── EAS.Distributed.ServiceHost.dll
│ │ │ ├── EAS.Distributed.WebService.dll
│ │ │ ├── EAS.Explorer.AddIn.Assist.dll
│ │ │ ├── EAS.Explorer.BLL.dll
│ │ │ ├── EAS.Explorer.DAL.Interface.dll
│ │ │ ├── EAS.Explorer.DAL.Oracle.dll
│ │ │ ├── EAS.Explorer.DAL.SQLServer.dll
│ │ │ ├── EAS.Explorer.dll
│ │ │ ├── EAS.Explorer.Res.dll
│ │ │ ├── EAS.Explorer.WebClient.dll
│ │ │ ├── EAS.Explorer.Web.dll
│ │ │ ├── EAS.Explorer.WPF.Res.dll
│ │ │ ├── EAS.MicroKernel.dll
│ │ │ ├── EAS.OracleClient.dll
│ │ │ ├── EAS.OrmDesigner.exe
│ │ │ ├── EAS.Report.Controls.dll
│ │ │ ├── EAS.SmartUpdateConfig.exe
│ │ │ ├── EAS.SmartUpdater.exe
│ │ │ ├── EAS.WinClient.exe
│ │ │ ├── EAS.Windows.Controls.dll
│ │ │ ├── EAS.Windows.dll
│ │ │ ├── EAS.Windows.GuiTemplate.dll
│ │ │ ├── Fireball.CodeEditor.dll
│ │ │ ├── Fireball.CodeEditor.SyntaxFiles.dll
│ │ │ ├── Fireball.Core.dll
│ │ │ ├── Fireball.SyntaxDocument.dll
│ │ │ ├── Fireball.Win32.dll
│ │ │ ├── Fireball.Windows.Forms.dll
│ │ │ ├── itextsharp.dll
│ │ │ ├── Microsoft.Data.ConnectionUI.Dialog.dll
│ │ │ ├── Microsoft.Data.ConnectionUI.dll
│ │ │ ├── NetronGraphLib.dll
│ │ │ ├── RdlEngine.dll
│ │ │ ├── RdlViewer.dll
│ │ │ ├── ReportDesigner.dll
│ │ │ └── ReportDesigner.Start.exe
│ │ └── 使用说明.txt
│ └── WinClient
│ ├── DrugShop.BLL.dll
│ ├── DrugShop.DAL.dll
│ ├── DrugShop.Res.dll
│ ├── DrugShop.WinUI.dll
│ ├── EAS.Data.DataUIMapper.dll
│ ├── EAS.Data.dll
│ ├── EAS.Develop.Debuger.dll
│ ├── EAS.Distributed.Client.dll
│ ├── EAS.Distributed.Contracts.dll
│ ├── EAS.Distributed.ServiceHost.dll
│ ├── EAS.Distributed.WebService.dll
│ ├── EAS.Explorer.AddIn.Assist.dll
│ ├── EAS.Explorer.BLL.dll
│ ├── EAS.Explorer.DAL.Interface.dll
│ ├── EAS.Explorer.DAL.Oracle.dll
│ ├── EAS.Explorer.DAL.SQLServer.dll
│ ├── EAS.Explorer.dll
│ ├── EAS.Explorer.Res.dll
│ ├── EAS.Explorer.WebClient.dll
│ ├── EAS.Explorer.Web.dll
│ ├── EAS.Explorer.WPF.Res.dll
│ ├── EAS.MicroKernel.dll
│ ├── EAS.OracleClient.dll
│ ├── EAS.OrmDesigner.exe
│ ├── EAS.Report.Controls.dll
│ ├── EAS.SmartUpdateConfig.exe
│ ├── EAS.SmartUpdater.exe
│ ├── EAS.WinClient.exe
│ ├── EAS.WinClient.exe.config
│ ├── EAS.Windows.Controls.dll
│ ├── EAS.Windows.dll
│ ├── EAS.Windows.GuiTemplate.dll
│ ├── Fireball.CodeEditor.dll
│ ├── Fireball.CodeEditor.SyntaxFiles.dll
│ ├── Fireball.Core.dll
│ ├── Fireball.SyntaxDocument.dll
│ ├── Fireball.Win32.dll
│ ├── Fireball.Windows.Forms.dll
│ ├── itextsharp.dll
│ ├── Microsoft.Data.ConnectionUI.Dialog.dll
│ ├── Microsoft.Data.ConnectionUI.dll
│ ├── NetronGraphLib.dll
│ ├── RdlEngine.dll
│ ├── RdlViewer.dll
│ ├── ReportDesigner.dll
│ ├── ReportDesigner.Start.exe
│ ├── SmartUpdate.xml
│ └── update.ini
├── 药店系统-完整开发教程PDF说明书
│ ├── AgileEAS.NET平台开发实例-开发环境配置.pdf
│ ├── AgileEAS.NET平台开发实例-智能升级及服务器部署.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-BLL层分析.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-DAL层解析.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-UI层分析.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-UI层重构技巧及其他.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-准备开发环境(上).pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-准备开发环境(下).pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-准备开发环境(中).pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-分布式部署.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-功能发布[权限配置][下].pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-功能发布[模块注册][上].pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-报表开发(上).pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-报表开发(下).pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-报表开发(高级篇).pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-数据库建模.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-数据库还原.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-系统架构设计.pdf
│ ├── AgileEAS.NET平台开发实例-药店系统-资源文件的替换[大家关心的问题].pdf
│ ├── AgileEAS.NET平台开发案例-药店系统-项目说明.pdf
│ └── AgileEAS数据库还原及相关设计说明.pdf
├── 药店系统-文档
│ ├── DrugShop.sdm
│ ├── 药店进销存数据库设计说明书.pdf
│ └── 药店进销存需求说明书.pdf
└── 药店系统 说明.doc
55 directories, 561 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论