实例介绍
超市进销存系统管理源码,里面包含:开发文档、数据库表结构、设计说明书等。开发环境为Visual Studio 2013,数据库为SqlServer2012,使用.net 4.5开发。
【实例截图】
【核心代码】
4744302543347427735.zip
└── 超市进销存系统管理源码
├── DB
│ ├── DB
│ │ ├── DB.rar
│ │ ├── 项目-超市管理系统_log.ldf
│ │ └── 项目-超市管理系统.mdf
│ └── DB - 副本
│ ├── 项目-超市管理系统_log.ldf
│ └── 项目-超市管理系统.mdf
├── 攻壳机动队
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 数据库设计
│ │ └── 数据库.xlsx
│ ├── 超市管理系统 -系统设计说明书.doc
│ ├── 超市管理系统-需求规格说明书.doc
│ ├── 项目开发计划表.xls
│ ├── 项目立项及开发规范说明书.docx
│ ├── 项目-超市管理系统_log.ldf
│ └── 项目-超市管理系统.mdf
├── 源码说明.txt
├── 超市管理系统
│ ├── BLL
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BLL.dll
│ │ │ │ ├── BLL.pdb
│ │ │ │ ├── DAL.dll
│ │ │ │ ├── DAL.pdb
│ │ │ │ ├── model.dll
│ │ │ │ └── model.pdb
│ │ │ └── Release
│ │ ├── BLL.csproj
│ │ ├── GoodsBLL.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── BLL.csproj.CoreCompileInputs.cache
│ │ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ │ ├── BLL.csprojResolveAssemblyReference.cache
│ │ │ ├── BLL.dll
│ │ │ ├── BLL.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ └── TempPE
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SaleBll.cs
│ │ ├── SalemanBll.cs
│ │ ├── SalesDailBLL.cs
│ │ ├── TextBoxBll.cs
│ │ ├── TypeBLL.cs
│ │ └── VipBll.cs
│ ├── DAL
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── DAL.dll
│ │ │ │ ├── DAL.pdb
│ │ │ │ ├── model.dll
│ │ │ │ └── model.pdb
│ │ │ └── Release
│ │ ├── DAL.csproj
│ │ ├── DBHelper.cs
│ │ ├── GoodsDAL.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DAL.csproj.CoreCompileInputs.cache
│ │ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ │ ├── DAL.csprojResolveAssemblyReference.cache
│ │ │ ├── DAL.dll
│ │ │ ├── DAL.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ └── TempPE
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SaleDal.cs
│ │ ├── SalemanDAL.cs
│ │ ├── SalesDailsDal.cs
│ │ ├── TextBox.cs
│ │ ├── TypeDAL.cs
│ │ └── VipDal.cs
│ ├── model
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── model.dll
│ │ │ │ └── model.pdb
│ │ │ └── Release
│ │ ├── Goods.cs
│ │ ├── model.csproj
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── model.csproj.CoreCompileInputs.cache
│ │ │ ├── model.csproj.FileListAbsolute.txt
│ │ │ ├── model.dll
│ │ │ ├── model.pdb
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ └── TempPE
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Saleman.cs
│ │ ├── Sales.cs
│ │ ├── SalesDetail.cs
│ │ ├── Type.cs
│ │ ├── Vip.cs
│ │ └── Warehouse.cs
│ ├── visual studio 2012
│ │ └── Projects
│ ├── visual studio 2012Projects
│ ├── 登录
│ │ ├── App.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BLL.dll
│ │ │ │ ├── CSkin.dll
│ │ │ │ ├── DAL.dll
│ │ │ │ ├── IrisSkin2.dll
│ │ │ │ ├── model.dll
│ │ │ │ ├── 登录.exe
│ │ │ │ ├── 登录.exe.config
│ │ │ │ ├── 登录.vshost.exe
│ │ │ │ ├── 登录.vshost.exe.config
│ │ │ │ ├── 登录.vshost.exe.manifest
│ │ │ │ └── 超市管理系统.rar
│ │ │ └── Release
│ │ ├── Goodsadd.cs
│ │ ├── Goodsadd.Designer.cs
│ │ ├── Goodsadd.resx
│ │ ├── LoginMain.cs
│ │ ├── LoginMain.Designer.cs
│ │ ├── LoginMain.resx
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── name.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ │ └── _项目_超市管理系统DataSet.Designer.cs.dll
│ │ │ ├── 登录.add.resources
│ │ │ ├── 登录.csproj.FileListAbsolute.txt
│ │ │ ├── 登录.csproj.GenerateResource.Cache
│ │ │ ├── 登录.csprojResolveAssemblyReference.cache
│ │ │ ├── 登录.exe
│ │ │ ├── 登录.LoginForm.resources
│ │ │ ├── 登录.MainForm.resources
│ │ │ ├── 登录.pdb
│ │ │ ├── 登录.Properties.Resources.resources
│ │ │ ├── 登录.SaledetailsForm.resources
│ │ │ ├── 登录.SalerForm.resources
│ │ │ ├── 登录.StaffForm.resources
│ │ │ ├── 登录.VIPForm.resources
│ │ │ ├── 登录.WarehouseForm.resources
│ │ │ ├── 超市管理系统.csproj.CopyComplete
│ │ │ ├── 超市管理系统.csproj.CoreCompileInputs.cache
│ │ │ ├── 超市管理系统.csproj.FileListAbsolute.txt
│ │ │ ├── 超市管理系统.csproj.GenerateResource.Cache
│ │ │ ├── 超市管理系统.csprojResolveAssemblyReference.cache
│ │ │ ├── 超市管理系统.Goodsadd.resources
│ │ │ ├── 超市管理系统.LoginForm.resources
│ │ │ ├── 超市管理系统.MainForm.resources
│ │ │ ├── 超市管理系统.Properties.Resources.resources
│ │ │ ├── 超市管理系统.SaledetailsForm.resources
│ │ │ ├── 超市管理系统.SalemanAdd.resources
│ │ │ ├── 超市管理系统.SalerForm.resources
│ │ │ ├── 超市管理系统.StaffForm.resources
│ │ │ ├── 超市管理系统.TypeForm.resources
│ │ │ ├── 超市管理系统.VIPadd.resources
│ │ │ ├── 超市管理系统.VIPForm.resources
│ │ │ └── 超市管理系统.WarehouseForm.resources
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── ico61.gif
│ │ │ ├── T1-arrow-右.png
│ │ │ ├── 仓库设置.png
│ │ │ ├── 付款方式.png
│ │ │ ├── 会员管理.png
│ │ │ ├── 前台零售.png
│ │ │ ├── 员工设置.png
│ │ │ ├── 商品类型.png
│ │ │ ├── 商品设置.png
│ │ │ ├── 商品进货.png
│ │ │ ├── 客户管理.png
│ │ │ ├── 左.png
│ │ │ ├── 库存状况.png
│ │ │ ├── 库存管理.png
│ │ │ ├── 批发销售.png
│ │ │ ├── 换班操作.png
│ │ │ ├── 提醒查询.png
│ │ │ ├── 未标题-2.png
│ │ │ ├── 管理员设置.png
│ │ │ ├── 系统设置.png
│ │ │ ├── 综合统计.png
│ │ │ ├── 背景图2.jpg
│ │ │ ├── 背景图.jpg
│ │ │ ├── 营业报表.png
│ │ │ ├── 退出系统.png
│ │ │ └── 钱流管理.png
│ │ ├── SaledetailsForm.cs
│ │ ├── SaledetailsForm.Designer.cs
│ │ ├── SaledetailsForm.resx
│ │ ├── SalemanAdd.cs
│ │ ├── SalemanAdd.Designer.cs
│ │ ├── SalemanAdd.resx
│ │ ├── SalerForm.cs
│ │ ├── SalerForm.designer.cs
│ │ ├── SalerForm.resx
│ │ ├── StaffForm.cs
│ │ ├── StaffForm.Designer.cs
│ │ ├── StaffForm.resx
│ │ ├── TypeForm.cs
│ │ ├── TypeForm.Designer.cs
│ │ ├── TypeForm.resx
│ │ ├── VIPadd.cs
│ │ ├── VIPadd.Designer.cs
│ │ ├── VIPadd.resx
│ │ ├── VIPForm.cs
│ │ ├── VIPForm.Designer.cs
│ │ ├── VIPForm.resx
│ │ ├── WarehouseForm.cs
│ │ ├── WarehouseForm.Designer.cs
│ │ ├── WarehouseForm.resx
│ │ └── 超市管理系统.csproj
│ ├── 超市管理系统.sln
│ ├── 超市管理系统.suo
│ ├── 超市管理系统.v11.suo
│ └── 超市管理系统.v12.suo
└── 超市管理系统图片
├── 我的图片
│ ├── desktop.ini
│ ├── 会员管理.png
│ ├── 商品类型.png
│ ├── 商品进货.png
│ ├── 库存管理.png
│ ├── 批发销售.png
│ ├── 系统设置.png
│ └── 钱流管理.png
├── 系统设置子模块
│ ├── 仓库设置.png
│ ├── 付款方式.png
│ ├── 供应商设置.png
│ ├── 员工设置.png
│ ├── 商品设置.png
│ ├── 客户设置.png
│ ├── 报表设计.png
│ ├── 数据备份.png
│ ├── 数据恢复.png
│ └── 管理员设置.png
├── 菜单栏
│ ├── 前台零售.png
│ ├── 客户管理.png
│ ├── 库存状况.png
│ ├── 换班操作.png
│ ├── 提醒查询.png
│ ├── 营业报表.png
│ └── 退出系统.png
└── 超市管理系统功能原型图
├── 商品信息表.jpg
├── 商品入仓单.jpg
├── 客户信息.jpg
├── 库存综合查询.jpg
├── 系统管理.jpg
├── 营业报表.jpg
├── 超市管理系统功能原型图
│ ├── 商品信息表.jpg
│ ├── 商品入仓单.jpg
│ ├── 库存综合查询.jpg
│ ├── 界面.png
│ ├── 系统管理.jpg
│ ├── 营业报表.jpg
│ ├── 进退货查询.jpg
│ └── 首界面.jpg
├── 进退货查询.jpg
└── 首界面.jpg
49 directories, 243 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论