实例介绍
绝对物超所值,希望对你会有帮助,里面的UML图都是原文件,可以在此基础上加入你自己的东西。论文、PPT、开题报告可以借鉴,最好要自己改改。
【实例截图】
【核心代码】
51355b55-9d76-48ac-907e-d5931e9ebd41
└── 图书管理系统--毕业设计
├── ER图
│ ├── 20120313-5.erwin
│ ├── 20120313-5 - 副本.erwin
│ ├── 20120313物理.erwin
│ ├── 20120313物理 - 副本.erwin
│ ├── diagram0.jpg
│ └── 使用ERWin即可打开.txt
├── Visio图
│ ├── 使用Visio2003_SP3即可打开.txt
│ ├── 图书管理活动图.vsd
│ ├── 图书管理状态图.vsd
│ ├── 系统模块图.vsd
│ └── 系统管理员用例图.vsd
├── 图书馆管理系统(含数据库)
│ ├── BLL
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── IBatisNet.Common.dll
│ │ │ ├── IBatisNet.DataMapper.dll
│ │ │ ├── MySql.Data.dll
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── TSG.BLL.dll
│ │ │ ├── TSG.BLL.pdb
│ │ │ ├── TSG.DAL.dll
│ │ │ ├── TSG.DAL.pdb
│ │ │ ├── TSG.DBUtility.dll
│ │ │ ├── TSG.DBUtility.pdb
│ │ │ ├── TSG.Model.dll
│ │ │ └── TSG.Model.pdb
│ │ ├── BLL.csproj
│ │ ├── BLL.csproj.user
│ │ ├── Function.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TSG.BLL.dll
│ │ │ └── TSG.BLL.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SysManage.cs
│ │ ├── T_Admin.cs
│ │ ├── T_Books.cs
│ │ ├── T_BookType.cs
│ │ ├── T_Borrow.cs
│ │ ├── T_Concern.cs
│ │ ├── T_Penalty.cs
│ │ ├── T_Reader.cs
│ │ ├── T_Renew.cs
│ │ ├── T_Return.cs
│ │ └── T_Writer.cs
│ ├── Common
│ │ ├── Assistant.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── COM.Excel.dll
│ │ │ ├── Excel.dll
│ │ │ ├── OpenSmtp.dll
│ │ │ ├── OWC10Chart.dll
│ │ │ ├── TSG.Common.dll
│ │ │ └── TSG.Common.pdb
│ │ ├── ChartHelper.cs
│ │ ├── Common.csproj
│ │ ├── Common.csproj.user
│ │ ├── ConfigHelper.cs
│ │ ├── DataCache.cs
│ │ ├── DataToExcel.cs
│ │ ├── DEncrypt
│ │ │ ├── DEncrypt.cs
│ │ │ ├── DESEncrypt.cs
│ │ │ ├── HashEncode.cs
│ │ │ ├── RSACryption.cs
│ │ │ └── vssver2.scc
│ │ ├── HttpProc.cs
│ │ ├── INIFile.cs
│ │ ├── Library_生成.suo
│ │ ├── MailSender.cs
│ │ ├── MessageBox.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── Common.csproj.FileListAbsolute.txt
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TSG.Common.dll
│ │ │ └── TSG.Common.pdb
│ │ ├── PageBase.cs
│ │ ├── PageValidate.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RMB.cs
│ │ ├── StringPlus.cs
│ │ ├── TimeParser.cs
│ │ ├── UrlOper.cs
│ │ └── vssver2.scc
│ ├── DAL
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── IBatisNet.Common.dll
│ │ │ ├── IBatisNet.DataMapper.dll
│ │ │ ├── MySql.Data.dll
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── TSG.DAL.dll
│ │ │ ├── TSG.DAL.pdb
│ │ │ ├── TSG.DBUtility.dll
│ │ │ ├── TSG.DBUtility.pdb
│ │ │ ├── TSG.Model.dll
│ │ │ └── TSG.Model.pdb
│ │ ├── DAL.csproj
│ │ ├── DAL.csproj.user
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TSG.DAL.dll
│ │ │ └── TSG.DAL.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SysManage.cs
│ │ ├── T_Admin.cs
│ │ ├── T_Books.cs
│ │ ├── T_BookType.cs
│ │ ├── T_Borrow.cs
│ │ ├── T_Concern.cs
│ │ ├── T_Penalty.cs
│ │ ├── T_Reader.cs
│ │ ├── T_Renew.cs
│ │ ├── T_Return.cs
│ │ └── T_Writer.cs
│ ├── DBUtility
│ │ ├── BaseSqlMapDao.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── IBatisNet.Common.dll
│ │ │ ├── IBatisNet.DataMapper.dll
│ │ │ ├── MySql.Data.dll
│ │ │ ├── System.Data.SQLite.DLL
│ │ │ ├── TSG.DBUtility.dll
│ │ │ └── TSG.DBUtility.pdb
│ │ ├── CommandInfo.cs
│ │ ├── DbHelperMySQL.cs
│ │ ├── DbHelperOleDb.cs
│ │ ├── DbHelperOra.cs
│ │ ├── DbHelperSQL2.cs
│ │ ├── DbHelperSQL.cs
│ │ ├── DbHelperSQLite.cs
│ │ ├── DbHelperSQLP.cs
│ │ ├── DBUtility.csproj
│ │ ├── DBUtility.csproj.user
│ │ ├── DESEncrypt.cs
│ │ ├── Library_生成.suo
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DBUtility.csproj.FileListAbsolute.txt
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TSG.DBUtility.dll
│ │ │ └── TSG.DBUtility.pdb
│ │ ├── OracleHelper.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PubConstant.cs
│ │ └── SQLHelper.cs
│ ├── Lib
│ │ ├── COM.Excel.dll
│ │ ├── Excel.dll
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── LTP.Accounts.dll
│ │ ├── LTP.Accounts.txt
│ │ ├── LtpPageControl.dll
│ │ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│ │ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll
│ │ ├── Microsoft.Web.UI.WebControls.dll
│ │ ├── MySql.Data.dll
│ │ ├── OpenSmtp.dll
│ │ ├── OWC10Chart.dll
│ │ ├── System.Data.SQLite.DLL
│ │ └── System.Data.SQLite.lib
│ ├── Library_生成.sln
│ ├── Library_生成.suo
│ ├── Model
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── TSG.Model.dll
│ │ │ └── TSG.Model.pdb
│ │ ├── Model.csproj
│ │ ├── Model.csproj.user
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Model.csproj.FileListAbsolute.txt
│ │ │ ├── TSG.Model.dll
│ │ │ └── TSG.Model.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SysNode.cs
│ │ ├── T_Admin.cs
│ │ ├── T_Books.cs
│ │ ├── T_BookType.cs
│ │ ├── T_Borrow.cs
│ │ ├── T_Concern.cs
│ │ ├── T_Penalty.cs
│ │ ├── T_Reader.cs
│ │ ├── T_Renew.cs
│ │ ├── T_Return.cs
│ │ └── T_Writer.cs
│ └── Web(DB内含数据库)
│ ├── Admin
│ │ ├── AdminList.aspx
│ │ ├── AdminList.aspx.cs
│ │ ├── AdminList.aspx.designer.cs
│ │ ├── AdminManage.aspx
│ │ ├── AdminManage.aspx.cs
│ │ └── AdminManage.aspx.designer.cs
│ ├── Bin
│ │ ├── AspNetPager.dll
│ │ ├── Excel.dll
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── LTP.Accounts.dll
│ │ ├── LtpPageControl.dll
│ │ ├── Microsoft.Web.UI.WebControls.dll
│ │ ├── MySql.Data.dll
│ │ ├── OWC10Chart.dll
│ │ ├── System.Data.SQLite.dll
│ │ ├── TSG.BLL.dll
│ │ ├── TSG.BLL.pdb
│ │ ├── TSG.DAL.dll
│ │ ├── TSG.DAL.pdb
│ │ ├── TSG.DBUtility.dll
│ │ ├── TSG.DBUtility.pdb
│ │ ├── TSG.Model.dll
│ │ ├── TSG.Model.pdb
│ │ ├── TSG.Web.dll
│ │ └── TSG.Web.pdb
│ ├── bookBorrow
│ │ ├── BorrowList.aspx
│ │ ├── BorrowList.aspx.cs
│ │ ├── BorrowList.aspx.designer.cs
│ │ ├── BorrowManage.aspx
│ │ ├── BorrowManage.aspx.cs
│ │ └── BorrowManage.aspx.designer.cs
│ ├── bookrenew
│ │ ├── RenewList.aspx
│ │ ├── RenewList.aspx.cs
│ │ ├── RenewList.aspx.designer.cs
│ │ ├── RenewManage.aspx
│ │ ├── RenewManage.aspx.cs
│ │ └── RenewManage.aspx.designer.cs
│ ├── bookreturn
│ │ ├── bookreturnmanage.aspx
│ │ ├── bookreturnmanage.aspx.cs
│ │ ├── bookreturnmanage.aspx.designer.cs
│ │ ├── RetrunList.aspx
│ │ ├── RetrunList.aspx.cs
│ │ └── RetrunList.aspx.designer.cs
│ ├── Books
│ │ ├── BooksList.aspx
│ │ ├── BooksList.aspx.cs
│ │ ├── BooksList.aspx.designer.cs
│ │ ├── BooksManage.aspx
│ │ ├── BooksManage.aspx.cs
│ │ ├── BooksManage.aspx.designer.cs
│ │ ├── UserSearch.aspx
│ │ ├── UserSearch.aspx.cs
│ │ └── UserSearch.aspx.designer.cs
│ ├── BookType
│ │ ├── BookTypeList.aspx
│ │ ├── BookTypeList.aspx.cs
│ │ ├── BookTypeList.aspx.designer.cs
│ │ ├── BookTypeManage.aspx
│ │ ├── BookTypeManage.aspx.cs
│ │ └── BookTypeManage.aspx.designer.cs
│ ├── Change_Admin.aspx
│ ├── Change_Admin.aspx.cs
│ ├── Change_Admin.aspx.designer.cs
│ ├── Change.aspx
│ ├── Change.aspx.cs
│ ├── Change.aspx.designer.cs
│ ├── Concern
│ │ ├── ConcernList.aspx
│ │ ├── ConcernList.aspx.cs
│ │ ├── ConcernList.aspx.designer.cs
│ │ ├── ConcernManage.aspx
│ │ ├── ConcernManage.aspx.cs
│ │ └── ConcernManage.aspx.designer.cs
│ ├── Controls
│ │ ├── checkright.ascx
│ │ ├── checkright.ascx.cs
│ │ ├── checkright.ascx.designer.cs
│ │ ├── copyright.ascx
│ │ ├── CopyRight.ascx.cs
│ │ └── CopyRight.ascx.designer.cs
│ ├── CoodTools.cs
│ ├── css
│ │ ├── common1.css
│ │ ├── control.css
│ │ ├── css.css
│ │ ├── head.css
│ │ ├── style0.css
│ │ ├── style.css
│ │ └── tab.js
│ ├── DB
│ │ ├── Library_log.ldf
│ │ └── Library.mdf
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Global.asax.resx
│ ├── home
│ │ ├── image
│ │ │ ├── delete_64.png
│ │ │ ├── gear_64.png
│ │ │ ├── plus_64.png
│ │ │ ├── search_64.png
│ │ │ └── up_64.png
│ │ ├── js
│ │ │ └── js.js
│ │ ├── user_home.aspx
│ │ ├── user_home.aspx.cs
│ │ ├── user_home.aspx.designer.cs
│ │ ├── youke_home.aspx
│ │ ├── youke_home.aspx.cs
│ │ └── youke_home.aspx.designer.cs
│ ├── images
│ │ ├── 33.jpg
│ │ ├── 3DSYRW_5015.png
│ │ ├── 3DXR_001002.png
│ │ ├── 3DXR_001019.png
│ │ ├── anniu_1.gif
│ │ ├── arrow_right.png
│ │ ├── background.jpg
│ │ ├── bg-top.png
│ │ ├── biaoti_bg.gif
│ │ ├── bookborrow.png
│ │ ├── bookrenew.png
│ │ ├── bookreturn.png
│ │ ├── bottom_bg.jpg
│ │ ├── but_10.gif
│ │ ├── but_1.gif
│ │ ├── but_2.gif
│ │ ├── but_5.gif
│ │ ├── but_6.gif
│ │ ├── but_7.gif
│ │ ├── but_8.gif
│ │ ├── but_9.gif
│ │ ├── button03.gif
│ │ ├── button04.gif
│ │ ├── button05.gif
│ │ ├── button06.gif
│ │ ├── button07.gif
│ │ ├── button08.gif
│ │ ├── button09.gif
│ │ ├── button10.gif
│ │ ├── dh_3.gif
│ │ ├── dh_bg.gif
│ │ ├── dhbutton01.gif
│ │ ├── dhbutton02.gif
│ │ ├── dhbutton03.gif
│ │ ├── dhbutton04.gif
│ │ ├── dhbutton05.gif
│ │ ├── ej1_bg.gif
│ │ ├── ej2_bg.gif
│ │ ├── ej3_bg.gif
│ │ ├── ej_bg.gif
│ │ ├── ej_bt.gif
│ │ ├── first.gif
│ │ ├── go.gif
│ │ ├── header-bg.jpg
│ │ ├── ico01.gif
│ │ ├── ico02.gif
│ │ ├── ico03.gif
│ │ ├── ico04.gif
│ │ ├── ico05.gif
│ │ ├── ico06.gif
│ │ ├── ico07.gif
│ │ ├── ico11.gif
│ │ ├── ico12.gif
│ │ ├── ico13.gif
│ │ ├── ico14.gif
│ │ ├── ico15.gif
│ │ ├── ico16.gif
│ │ ├── ico24.gif
│ │ ├── jiantou.png
│ │ ├── last.gif
│ │ ├── left_bg.gif
│ │ ├── left.gif
│ │ ├── left.jpg
│ │ ├── left_top.gif
│ │ ├── line01.gif
│ │ ├── login.png
│ │ ├── logo.gif
│ │ ├── logo.jpg
│ │ ├── logo - 副本.gif
│ │ ├── lt_xx.gif
│ │ ├── nav01.gif
│ │ ├── nav02.gif
│ │ ├── nav03.gif
│ │ ├── nav04.gif
│ │ ├── nav05.gif
│ │ ├── nav06.gif
│ │ ├── nav07.gif
│ │ ├── navend.gif
│ │ ├── newline.gif
│ │ ├── newling.gif
│ │ ├── next.gif
│ │ ├── right.jpg
│ │ ├── shape01.gif
│ │ ├── spacer.gif
│ │ ├── title_bg1.gif
│ │ ├── title_bg.gif
│ │ ├── top02.gif
│ │ ├── top03.gif
│ │ ├── top.gif
│ │ ├── top_left.jpg
│ │ ├── top_right.jpg
│ │ ├── welcome.gif
│ │ └── welcome - 副本.gif
│ ├── index.html
│ ├── js
│ │ ├── calendar.js
│ │ ├── check.js
│ │ ├── common.js
│ │ ├── meizzDate.js
│ │ ├── reg.js
│ │ ├── scroll.js
│ │ ├── selectAll.js
│ │ ├── typem.js
│ │ ├── util.js
│ │ └── xiangmu.js
│ ├── left.aspx
│ ├── left.aspx.cs
│ ├── left.aspx.designer.cs
│ ├── login.aspx
│ ├── login.aspx.cs
│ ├── login.aspx.designer.cs
│ ├── main.html
│ ├── MasterPage.master
│ ├── MasterPage.master.cs
│ ├── MasterPage.master.designer.cs
│ ├── My97DatePicker
│ │ ├── calendar.js
│ │ ├── lang
│ │ │ ├── en.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh-tw.js
│ │ ├── skin
│ │ │ ├── datePicker.gif
│ │ │ ├── default
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ ├── WdatePicker.css
│ │ │ └── whyGreen
│ │ │ ├── bg.jpg
│ │ │ ├── datepicker.css
│ │ │ └── img.gif
│ │ ├── WdatePicker.js
│ │ └── 开发包
│ │ ├── lang
│ │ │ ├── en.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh-tw.js
│ │ ├── readme.txt
│ │ └── skin
│ │ ├── datePicker.gif
│ │ ├── default
│ │ │ ├── datepicker.css
│ │ │ └── img.gif
│ │ ├── WdatePicker.css
│ │ └── whyGreen
│ │ ├── bg.jpg
│ │ ├── datepicker.css
│ │ └── img.gif
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TSG.Web.dll
│ │ ├── TSG.Web.Global.resources
│ │ ├── TSG.Web.pdb
│ │ └── Web.csproj.FileListAbsolute.txt
│ ├── Penalty
│ │ ├── PenaltyList.aspx
│ │ ├── PenaltyList.aspx.cs
│ │ ├── PenaltyList.aspx.designer.cs
│ │ ├── PenaltyManage.aspx
│ │ ├── PenaltyManage.aspx.cs
│ │ └── PenaltyManage.aspx.designer.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Reader
│ │ ├── ReaderList.aspx
│ │ ├── ReaderList.aspx.cs
│ │ ├── ReaderList.aspx.designer.cs
│ │ ├── ReaderManage.aspx
│ │ ├── ReaderManage.aspx.cs
│ │ └── ReaderManage.aspx.designer.cs
│ ├── script
│ │ ├── AC_RunActiveContent.js
│ │ ├── ajax.js
│ │ ├── function.js
│ │ ├── skin
│ │ │ ├── iepngfix.htc
│ │ │ ├── images
│ │ │ │ ├── banner.swf
│ │ │ │ ├── header_logo1.gif
│ │ │ │ ├── icon_11.gif
│ │ │ │ ├── icon_12.gif
│ │ │ │ ├── icon_1.gif
│ │ │ │ ├── jrsc.gif
│ │ │ │ ├── login_02.jpg
│ │ │ │ ├── login_02.png
│ │ │ │ ├── login_04.jpg
│ │ │ │ ├── login_05.jpg
│ │ │ │ ├── login_07.jpg
│ │ │ │ ├── login_08.jpg
│ │ │ │ ├── login_10.jpg
│ │ │ │ ├── login_15.jpg
│ │ │ │ ├── login_20.jpg
│ │ │ │ ├── login_foot.jpg
│ │ │ │ ├── login.gif
│ │ │ │ ├── login_header.jpg
│ │ │ │ ├── login_left.jpg
│ │ │ │ ├── login_right.jpg
│ │ │ │ ├── logintablebg.png
│ │ │ │ ├── man.png
│ │ │ │ └── menubg.gif
│ │ │ └── login.css
│ │ └── winopen.js
│ ├── style
│ │ └── style.css
│ ├── Style.css
│ ├── top.aspx
│ ├── top.aspx.cs
│ ├── top.aspx.designer.cs
│ ├── ValidateCode.aspx
│ ├── ValidateCode.aspx.cs
│ ├── ValidateCode.aspx.designer.cs
│ ├── Web.config
│ ├── Web.csproj
│ ├── Web.csproj.user
│ └── Writer
│ ├── WriterList.aspx
│ ├── WriterList.aspx.cs
│ ├── WriterList.aspx.designer.cs
│ ├── WriterManage.aspx
│ ├── WriterManage.aspx.cs
│ └── WriterManage.aspx.designer.cs
├── 开题报告.doc
├── 毕业论文 .doc
└── 答辩.ppt
73 directories, 481 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论