php图书管理系统mvc,图书管理系统(MVC三层架构)

【实例简介】

1.完整的源码,完整的数据库(Sql server)

2.整个项目通过三层架构实现,内有详细的说明文档,供初学者可以清楚看懂

3.代码都带有注释,很全面

【实例截图】

【核心代码】

图书管理系统(MVC三层架构)

└── LibrarySystem

├── BLL

│   ├── bin

│   │   └── Debug

│   │   ├── BLL.dll

│   │   ├── BLL.pdb

│   │   ├── DAL.dll

│   │   ├── DAL.pdb

│   │   ├── Model.dll

│   │   └── Model.pdb

│   ├── BLL.csproj

│   ├── BookBLL.cs

│   ├── BorrowBLL.cs

│   ├── ManagerBLL.cs

│   ├── obj

│   │   └── Debug

│   │   ├── BLL.csproj.FileListAbsolute.txt

│   │   ├── BLL.dll

│   │   ├── BLL.pdb

│   │   ├── Refactor

│   │   │   └── BLL.dll

│   │   └── ResolveAssemblyReference.cache

│   ├── Properties

│   │   └── AssemblyInfo.cs

│   └── ReaderBLL.cs

├── DAL

│   ├── bin

│   │   └── Debug

│   │   ├── DAL.dll

│   │   ├── DAL.pdb

│   │   ├── Model.dll

│   │   └── Model.pdb

│   ├── BookDAL.cs

│   ├── BorrowDAL.cs

│   ├── DAL.csproj

│   ├── getConn.cs

│   ├── ManagerDAL.cs

│   ├── obj

│   │   └── Debug

│   │   ├── DAL.csproj.FileListAbsolute.txt

│   │   ├── DAL.dll

│   │   ├── DAL.pdb

│   │   ├── Refactor

│   │   │   └── DAL.dll

│   │   └── ResolveAssemblyReference.cache

│   ├── Properties

│   │   └── AssemblyInfo.cs

│   └── ReaderDAL.cs

├── Forms

│   ├── About.cs

│   ├── About.Designer.cs

│   ├── About.resx

│   ├── AdminMainForm.cs

│   ├── AdminMainForm.Designer.cs

│   ├── AdminMainForm.resx

│   ├── app.config

│   ├── bin

│   │   └── Debug

│   │   ├── AxInterop.WMPLib.dll

│   │   ├── BLL.dll

│   │   ├── BLL.pdb

│   │   ├── DAL.dll

│   │   ├── DAL.pdb

│   │   ├── Interop.WMPLib.dll

│   │   ├── LibrarySystem.exe

│   │   ├── LibrarySystem.exe.config

│   │   ├── LibrarySystem.pdb

│   │   ├── LibrarySystem.vshost.exe

│   │   ├── LibrarySystem.vshost.exe.config

│   │   ├── LibrarySystem.vshost.exe.manifest

│   │   ├── Model.dll

│   │   ├── Model.pdb

│   │   ├── QLFUI.dll

│   │   └── QLFUI.pdb

│   ├── BooksInfoForm.cs

│   ├── BooksInfoForm.Designer.cs

│   ├── BooksInfoForm.resx

│   ├── BorrowInfoForm.cs

│   ├── BorrowInfoForm.Designer.cs

│   ├── BorrowInfoForm.resx

│   ├── BorrowSelectForm.cs

│   ├── BorrowSelectForm.Designer.cs

│   ├── BorrowSelectForm.resx

│   ├── ExistBooksForm.cs

│   ├── ExistBooksForm.Designer.cs

│   ├── ExistBooksForm.resx

│   ├── LibrarySystem.csproj

│   ├── LibrarySystem.csproj.user

│   ├── LoginForm.cs

│   ├── LoginForm.Designer.cs

│   ├── LoginForm.resx

│   ├── ModifyPwd.cs

│   ├── ModifyPwd.Designer.cs

│   ├── ModifyPwd.resx

│   ├── obj

│   │   └── Debug

│   │   ├── AxInterop.WMPLib.dll

│   │   ├── Interop.WMPLib.dll

│   │   ├── LibrarySystem.About.resources

│   │   ├── LibrarySystem.AdminMainForm.resources

│   │   ├── LibrarySystem.BooksInfoForm.resources

│   │   ├── LibrarySystem.BorrowInfoForm.resources

│   │   ├── LibrarySystem.BorrowSelectForm.resources

│   │   ├── LibrarySystem.csproj.FileListAbsolute.txt

│   │   ├── LibrarySystem.csproj.GenerateResource.Cache

│   │   ├── LibrarySystem.csproj.ResolveComReference.cache

│   │   ├── LibrarySystem.exe

│   │   ├── LibrarySystem.ExistBooksForm.resources

│   │   ├── LibrarySystem.LoginForm.resources

│   │   ├── LibrarySystem.ModifyPwd.resources

│   │   ├── LibrarySystem.OnlineRead.resources

│   │   ├── LibrarySystem.OnlineStudy.resources

│   │   ├── LibrarySystem.pdb

│   │   ├── LibrarySystem.Properties.Resources.resources

│   │   ├── LibrarySystem.ReaderInfoForm.resources

│   │   ├── LibrarySystem.ReaderMainForm.resources

│   │   ├── LibrarySystem.ReaderSelectForm.resources

│   │   ├── ResolveAssemblyReference.cache

│   │   └── TempPE

│   │   └── Properties.Resources.Designer.cs.dll

│   ├── OnlineRead.cs

│   ├── OnlineRead.Designer.cs

│   ├── OnlineRead.resx

│   ├── OnlineStudy.cs

│   ├── OnlineStudy.Designer.cs

│   ├── OnlineStudy.resx

│   ├── Program.cs

│   ├── Properties

│   │   ├── AssemblyInfo.cs

│   │   ├── Resources.Designer.cs

│   │   ├── Resources.resx

│   │   ├── Settings.Designer.cs

│   │   └── Settings.settings

│   ├── ReaderInfoForm.cs

│   ├── ReaderInfoForm.Designer.cs

│   ├── ReaderInfoForm.resx

│   ├── ReaderMainForm.cs

│   ├── ReaderMainForm.Designer.cs

│   ├── ReaderMainForm.resx

│   ├── ReaderSelectForm.cs

│   ├── ReaderSelectForm.Designer.cs

│   └── ReaderSelectForm.resx

├── Library_log.ldf

├── Library.mdf

├── LibrarySystem.sln

├── LibrarySystem.suo

├── Model

│   ├── bin

│   │   └── Debug

│   │   ├── Model.dll

│   │   └── Model.pdb

│   ├── BookInfo.cs

│   ├── BorrowInfo.cs

│   ├── ManagerInfo.cs

│   ├── Model.csproj

│   ├── obj

│   │   └── Debug

│   │   ├── Model.csproj.FileListAbsolute.txt

│   │   ├── Model.dll

│   │   ├── Model.pdb

│   │   └── Refactor

│   │   └── Model.dll

│   ├── Properties

│   │   └── AssemblyInfo.cs

│   └── ReaderInfo.cs

└── 小马图书管理系统使用说明.doc

29 directories, 137 files

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值