在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → JavaWeb餐厅管理系统

JavaWeb餐厅管理系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:17.17M
  • 下载次数:28
  • 浏览次数:220
  • 发布时间:2020-08-25
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
前端: 1.游客模式(可以观看店家信息) 2.用户登录后可以进行点餐,点餐后可以对菜和店家进行点评进行点评,结账 3.订座 4.个人信息管理 后端: 1.五表权限(员工登录做菜,老板登录观看用户记录和菜铺 管理,订单管理) 2.菜谱管理(增删查改),菜系管理 3.统计菜的点击次数,评价,用户消费总金额,最后一次消费时间 1.用户表:user userId(用户id),userName(用户名),password(密码), createTime(创建时间),lastTime(最后一次登录时间),number 预留号码 2.角色表:role roleId(角色id),roleName(
【实例截图】
【核心代码】
restaurant
└── restaurant
├── build
│   └── classes
│   └── com
│   └── znsd
│   └── restaurant
│   ├── bean
│   │   ├── AuthorityBean.class
│   │   ├── EvaluateBean.class
│   │   ├── IndentBean.class
│   │   ├── MenuBean.class
│   │   ├── RecordBean.class
│   │   ├── Role_AuthorityBean.class
│   │   ├── RoleBean.class
│   │   ├── TableZibean.class
│   │   ├── TypeBean.class
│   │   ├── UserBean.class
│   │   ├── User_RoleBean.class
│   │   └── VegetableTypeBean.class
│   ├── dao
│   │   ├── CookingDao.class
│   │   ├── DBUtils.class
│   │   ├── EvaluateDao.class
│   │   ├── FuncTionDao.class
│   │   ├── impl
│   │   │   ├── CookingDaoImpl.class
│   │   │   ├── EvaluateDaoImp.class
│   │   │   ├── FuncTionDaoImpl.class
│   │   │   ├── IndentDaoImpl.class
│   │   │   ├── IndextSelectDaoImpl.class
│   │   │   ├── MenuDaoImpl.class
│   │   │   ├── OrderdishesMenuDaoImpl.class
│   │   │   ├── RearUserDaoImpl.class
│   │   │   ├── RecordDaoImpl.class
│   │   │   ├── ReviseDeskDnoImpl.class
│   │   │   ├── TableDaoImpl.class
│   │   │   ├── TreeDaoImpl.class
│   │   │   ├── TypeDaoImpl.class
│   │   │   ├── UserDaoImpl.class
│   │   │   └── VegetableTypeDaoImpl.class
│   │   ├── IndentDao.class
│   │   ├── IndentSelectDao.class
│   │   ├── MenuDao.class
│   │   ├── OrderdishesMenuDao.class
│   │   ├── RearUserDao.class
│   │   ├── RecordDao.class
│   │   ├── ReviseDeskDno.class
│   │   ├── TableDao.class
│   │   ├── TreeDao.class
│   │   ├── TypeDao.class
│   │   ├── UserDao.class
│   │   └── VegetableTypeDao.class
│   ├── servers
│   │   ├── CookingServers.class
│   │   ├── EvaluateServers.class
│   │   ├── FuncTionServer.class
│   │   ├── impl
│   │   │   ├── CookingServersImpl.class
│   │   │   ├── EvaluateServersImpl.class
│   │   │   ├── FuncTionServerImpl.class
│   │   │   ├── IndentServersImpl.class
│   │   │   ├── IndextSelectServersImpl.class
│   │   │   ├── MenuServersImpl.class
│   │   │   ├── OrderdishesMenuImpl.class
│   │   │   ├── RearUserServersImpl.class
│   │   │   ├── RecordServersImpl.class
│   │   │   ├── RecordServiceImpl.class
│   │   │   ├── ReviseDeskServersImpl.class
│   │   │   ├── TableServersImpl.class
│   │   │   ├── TreeServiceImpl.class
│   │   │   ├── TypeServiceImpl.class
│   │   │   ├── UserServiceImpl.class
│   │   │   └── VegetableTypeServiceImpl.class
│   │   ├── IndentServers.class
│   │   ├── IndextSelectServers.class
│   │   ├── MenuServers.class
│   │   ├── OrderdishesMenuService.class
│   │   ├── RearUserServers.class
│   │   ├── RecordServers.class
│   │   ├── RecordService.class
│   │   ├── ReviseDeskServers.class
│   │   ├── TableServers.class
│   │   ├── TreeService.class
│   │   ├── TypeService.class
│   │   ├── UserService.class
│   │   └── VegetableTypeService.class
│   └── servlet
│   ├── Consumption.class
│   ├── CookingServlet.class
│   ├── FuncTionServlet.class
│   ├── IndentServlet.class
│   ├── IndextSelectServlet.class
│   ├── MenuServlet.class
│   ├── MyDeleteServlet.class
│   ├── OrderdishesMenu.class
│   ├── RecordServlet.class
│   ├── TableServlet.class
│   ├── TransitServlet.class
│   ├── TreeServlet.class
│   └── UserServlet.class
├── src
│   └── com
│   └── znsd
│   └── restaurant
│   ├── bean
│   │   ├── AuthorityBean.java
│   │   ├── EvaluateBean.java
│   │   ├── IndentBean.java
│   │   ├── MenuBean.java
│   │   ├── RecordBean.java
│   │   ├── Role_AuthorityBean.java
│   │   ├── RoleBean.java
│   │   ├── TableZibean.java
│   │   ├── TypeBean.java
│   │   ├── UserBean.java
│   │   ├── User_RoleBean.java
│   │   └── VegetableTypeBean.java
│   ├── dao
│   │   ├── CookingDao.java
│   │   ├── DBUtils.java
│   │   ├── EvaluateDao.java
│   │   ├── FuncTionDao.java
│   │   ├── impl
│   │   │   ├── CookingDaoImpl.java
│   │   │   ├── EvaluateDaoImp.java
│   │   │   ├── FuncTionDaoImpl.java
│   │   │   ├── IndentDaoImpl.java
│   │   │   ├── IndextSelectDaoImpl.java
│   │   │   ├── MenuDaoImpl.java
│   │   │   ├── OrderdishesMenuDaoImpl.java
│   │   │   ├── RearUserDaoImpl.java
│   │   │   ├── RecordDaoImpl.java
│   │   │   ├── ReviseDeskDnoImpl.java
│   │   │   ├── TableDaoImpl.java
│   │   │   ├── TreeDaoImpl.java
│   │   │   ├── TypeDaoImpl.java
│   │   │   ├── UserDaoImpl.java
│   │   │   └── VegetableTypeDaoImpl.java
│   │   ├── IndentDao.java
│   │   ├── IndentSelectDao.java
│   │   ├── MenuDao.java
│   │   ├── OrderdishesMenuDao.java
│   │   ├── RearUserDao.java
│   │   ├── RecordDao.java
│   │   ├── ReviseDeskDno.java
│   │   ├── TableDao.java
│   │   ├── TreeDao.java
│   │   ├── TypeDao.java
│   │   ├── UserDao.java
│   │   └── VegetableTypeDao.java
│   ├── servers
│   │   ├── CookingServers.java
│   │   ├── EvaluateServers.java
│   │   ├── FuncTionServer.java
│   │   ├── impl
│   │   │   ├── CookingServersImpl.java
│   │   │   ├── EvaluateServersImpl.java
│   │   │   ├── FuncTionServerImpl.java
│   │   │   ├── IndentServersImpl.java
│   │   │   ├── IndextSelectServersImpl.java
│   │   │   ├── MenuServersImpl.java
│   │   │   ├── OrderdishesMenuImpl.java
│   │   │   ├── RearUserServersImpl.java
│   │   │   ├── RecordServersImpl.java
│   │   │   ├── RecordServiceImpl.java
│   │   │   ├── ReviseDeskServersImpl.java
│   │   │   ├── TableServersImpl.java
│   │   │   ├── TreeServiceImpl.java
│   │   │   ├── TypeServiceImpl.java
│   │   │   ├── UserServiceImpl.java
│   │   │   └── VegetableTypeServiceImpl.java
│   │   ├── IndentServers.java
│   │   ├── IndextSelectServers.java
│   │   ├── MenuServers.java
│   │   ├── OrderdishesMenuService.java
│   │   ├── RearUserServers.java
│   │   ├── RecordServers.java
│   │   ├── RecordService.java
│   │   ├── ReviseDeskServers.java
│   │   ├── TableServers.java
│   │   ├── TreeService.java
│   │   ├── TypeService.java
│   │   ├── UserService.java
│   │   └── VegetableTypeService.java
│   └── servlet
│   ├── Consumption.java
│   ├── CookingServlet.java
│   ├── FuncTionServlet.java
│   ├── IndentServlet.java
│   ├── IndextSelectServlet.java
│   ├── MenuServlet.java
│   ├── MyDeleteServlet.java
│   ├── OrderdishesMenu.java
│   ├── RecordServlet.java
│   ├── TableServlet.java
│   ├── TransitServlet.java
│   ├── TreeServlet.java
│   └── UserServlet.java
└── WebContent
├── afterManage
│   ├── consumption.jsp
│   ├── evaluate.jsp
│   ├── frame.jsp
│   ├── menuAdd.jsp
│   ├── menu.jsp
│   ├── userManage.jsp
│   └── vegetableType.jsp
├── backindex.jsp
├── boardAdd.jsp
├── board.jsp
├── cooking
│   ├── cookingadd.jsp
│   └── cookingdelete.jsp
├── css
│   ├── color1.css
│   ├── mediaelementplayer.min.css
│   └── style.css
├── easyui
│   ├── changelog.txt
│   ├── demo-mobile
│   │   ├── accordion
│   │   │   ├── basic.html
│   │   │   ├── _content.html
│   │   │   └── header.html
│   │   ├── animation
│   │   │   ├── basic.html
│   │   │   ├── fade.html
│   │   │   ├── pop.html
│   │   │   └── slide.html
│   │   ├── badge
│   │   │   ├── basic.html
│   │   │   ├── button.html
│   │   │   ├── list.html
│   │   │   └── tabs.html
│   │   ├── button
│   │   │   ├── basic.html
│   │   │   ├── group.html
│   │   │   ├── style.html
│   │   │   └── switch.html
│   │   ├── datagrid
│   │   │   ├── basic.html
│   │   │   └── rowediting.html
│   │   ├── datalist
│   │   │   ├── basic.html
│   │   │   ├── group.html
│   │   │   └── selection.html
│   │   ├── dialog
│   │   │   ├── basic.html
│   │   │   └── message.html
│   │   ├── form
│   │   │   └── basic.html
│   │   ├── images
│   │   │   ├── login1.jpg
│   │   │   ├── modem.png
│   │   │   ├── more.png
│   │   │   ├── pda.png
│   │   │   ├── scanner.png
│   │   │   └── tablet.png
│   │   ├── input
│   │   │   ├── numberspinner.html
│   │   │   └── textbox.html
│   │   ├── layout
│   │   │   └── basic.html
│   │   ├── menu
│   │   │   ├── basic.html
│   │   │   └── menubar.html
│   │   ├── panel
│   │   │   ├── ajax.html
│   │   │   ├── basic.html
│   │   │   ├── _content.html
│   │   │   └── nav.html
│   │   ├── simplelist
│   │   │   ├── basic.html
│   │   │   ├── button.html
│   │   │   ├── group.html
│   │   │   ├── image.html
│   │   │   └── link.html
│   │   ├── tabs
│   │   │   ├── basic.html
│   │   │   ├── nav.html
│   │   │   └── pill.html
│   │   ├── toolbar
│   │   │   ├── basic.html
│   │   │   ├── button.html
│   │   │   └── menu.html
│   │   └── tree
│   │   ├── basic.html
│   │   └── dnd.html
│   ├── easyloader.js
│   ├── jquery.easyui.min.js
│   ├── jquery.easyui.mobile.js
│   ├── jquery.min.js
│   ├── license_freeware.txt
│   ├── locale
│   │   ├── easyui-lang-af.js
│   │   ├── easyui-lang-am.js
│   │   ├── easyui-lang-ar.js
│   │   ├── easyui-lang-bg.js
│   │   ├── easyui-lang-ca.js
│   │   ├── easyui-lang-cs.js
│   │   ├── easyui-lang-cz.js
│   │   ├── easyui-lang-da.js
│   │   ├── easyui-lang-de.js
│   │   ├── easyui-lang-el.js
│   │   ├── easyui-lang-en.js
│   │   ├── easyui-lang-es.js
│   │   ├── easyui-lang-fr.js
│   │   ├── easyui-lang-it.js
│   │   ├── easyui-lang-jp.js
│   │   ├── easyui-lang-ko.js
│   │   ├── easyui-lang-nl.js
│   │   ├── easyui-lang-pl.js
│   │   ├── easyui-lang-pt_BR.js
│   │   ├── easyui-lang-ru.js
│   │   ├── easyui-lang-sv_SE.js
│   │   ├── easyui-lang-tr.js
│   │   ├── easyui-lang-zh_CN.js
│   │   └── easyui-lang-zh_TW.js
│   ├── plugins
│   │   ├── jquery.accordion.js
│   │   ├── jquery.calendar.js
│   │   ├── jquery.combobox.js
│   │   ├── jquery.combogrid.js
│   │   ├── jquery.combo.js
│   │   ├── jquery.combotreegrid.js
│   │   ├── jquery.combotree.js
│   │   ├── jquery.datagrid.js
│   │   ├── jquery.datalist.js
│   │   ├── jquery.datebox.js
│   │   ├── jquery.datetimebox.js
│   │   ├── jquery.datetimespinner.js
│   │   ├── jquery.dialog.js
│   │   ├── jquery.draggable.js
│   │   ├── jquery.droppable.js
│   │   ├── jquery.filebox.js
│   │   ├── jquery.form.js
│   │   ├── jquery.layout.js
│   │   ├── jquery.linkbutton.js
│   │   ├── jquery.menubutton.js
│   │   ├── jquery.menu.js
│   │   ├── jquery.messager.js
│   │   ├── jquery.mobile.js
│   │   ├── jquery.numberbox.js
│   │   ├── jquery.numberspinner.js
│   │   ├── jquery.pagination.js
│   │   ├── jquery.panel.js
│   │   ├── jquery.parser.js
│   │   ├── jquery.passwordbox.js
│   │   ├── jquery.progressbar.js
│   │   ├── jquery.propertygrid.js
│   │   ├── jquery.resizable.js
│   │   ├── jquery.searchbox.js
│   │   ├── jquery.slider.js
│   │   ├── jquery.spinner.js
│   │   ├── jquery.splitbutton.js
│   │   ├── jquery.switchbutton.js
│   │   ├── jquery.tabs.js
│   │   ├── jquery.tagbox.js
│   │   ├── jquery.textbox.js
│   │   ├── jquery.timespinner.js
│   │   ├── jquery.tooltip.js
│   │   ├── jquery.treegrid.js
│   │   ├── jquery.tree.js
│   │   ├── jquery.validatebox.js
│   │   └── jquery.window.js
│   ├── readme.txt
│   ├── src
│   │   ├── easyloader.js
│   │   ├── jquery.accordion.js
│   │   ├── jquery.calendar.js
│   │   ├── jquery.combobox.js
│   │   ├── jquery.datebox.js
│   │   ├── jquery.draggable.js
│   │   ├── jquery.droppable.js
│   │   ├── jquery.form.js
│   │   ├── jquery.linkbutton.js
│   │   ├── jquery.menu.js
│   │   ├── jquery.parser.js
│   │   ├── jquery.progressbar.js
│   │   ├── jquery.propertygrid.js
│   │   ├── jquery.resizable.js
│   │   ├── jquery.slider.js
│   │   ├── jquery.tabs.js
│   │   └── jquery.window.js
│   └── themes
│   ├── black
│   │   ├── accordion.css
│   │   ├── calendar.css
│   │   ├── combobox.css
│   │   ├── combo.css
│   │   ├── datagrid.css
│   │   ├── datalist.css
│   │   ├── datebox.css
│   │   ├── dialog.css
│   │   ├── easyui.css
│   │   ├── filebox.css
│   │   ├── images
│   │   │   ├── accordion_arrows.png
│   │   │   ├── blank.gif
│   │   │   ├── calendar_arrows.png
│   │   │   ├── combo_arrow.png
│   │   │   ├── datagrid_icons.png
│   │   │   ├── datebox_arrow.png
│   │   │   ├── layout_arrows.png
│   │   │   ├── linkbutton_bg.png
│   │   │   ├── loading.gif
│   │   │   ├── menu_arrows.png
│   │   │   ├── messager_icons.png
│   │   │   ├── pagination_icons.png
│   │   │   ├── panel_tools.png
│   │   │   ├── passwordbox_close.png
│   │   │   ├── passwordbox_open.png
│   │   │   ├── searchbox_button.png
│   │   │   ├── slider_handle.png
│   │   │   ├── spinner_arrows.png
│   │   │   ├── tabs_icons.png
│   │   │   ├── tagbox_icons.png
│   │   │   ├── tree_icons.png
│   │   │   └── validatebox_warning.png
│   │   ├── layout.css
│   │   ├── linkbutton.css
│   │   ├── menubutton.css
│   │   ├── menu.css
│   │   ├── messager.css
│   │   ├── numberbox.css
│   │   ├── pagination.css
│   │   ├── panel.css
│   │   ├── passwordbox.css
│   │   ├── progressbar.css
│   │   ├── propertygrid.css
│   │   ├── searchbox.css
│   │   ├── slider.css
│   │   ├── spinner.css
│   │   ├── splitbutton.css
│   │   ├── switchbutton.css
│   │   ├── tabs.css
│   │   ├── tagbox.css
│   │   ├── textbox.css
│   │   ├── tooltip.css
│   │   ├── tree.css
│   │   ├── validatebox.css
│   │   └── window.css
│   ├── bootstrap
│   │   ├── accordion.css
│   │   ├── calendar.css
│   │   ├── combobox.css
│   │   ├── combo.css
│   │   ├── datagrid.css
│   │   ├── datalist.css
│   │   ├── datebox.css
│   │   ├── dialog.css
│   │   ├── easyui.css
│   │   ├── filebox.css
│   │   ├── images
│   │   │   ├── accordion_arrows.png
│   │   │   ├── blank.gif
│   │   │   ├── calendar_arrows.png
│   │   │   ├── combo_arrow.png
│   │   │   ├── datagrid_icons.png
│   │   │   ├── datebox_arrow.png
│   │   │   ├── layout_arrows.png
│   │   │   ├── linkbutton_bg.png
│   │   │   ├── loading.gif
│   │   │   ├── menu_arrows.png
│   │   │   ├── messager_icons.png
│   │   │   ├── pagination_icons.png
│   │   │   ├── panel_tools.png
│   │   │   ├── passwordbox_close.png
│   │   │   ├── passwordbox_open.png
│   │   │   ├── searchbox_button.png
│   │   │   ├── slider_handle.png
│   │   │   ├── spinner_arrows.png
│   │   │   ├── tabs_icons.png
│   │   │   ├── tagbox_icons.png
│   │   │   ├── tree_icons.png
│   │   │   └── validatebox_warning.png
│   │   ├── layout.css
│   │   ├── linkbutton.css
│   │   ├── menubutton.css
│   │   ├── menu.css
│   │   ├── messager.css
│   │   ├── numberbox.css
│   │   ├── pagination.css
│   │   ├── panel.css
│   │   ├── passwordbox.css
│   │   ├── progressbar.css
│   │   ├── propertygrid.css
│   │   ├── searchbox.css
│   │   ├── slider.css
│   │   ├── spinner.css
│   │   ├── splitbutton.css
│   │   ├── switchbutton.css
│   │   ├── tabs.css
│   │   ├── tagbox.css
│   │   ├── textbox.css
│   │   ├── tooltip.css
│   │   ├── tree.css
│   │   ├── validatebox.css
│   │   └── window.css
│   ├── color.css
│   ├── default
│   │   ├── accordion.css
│   │   ├── calendar.css
│   │   ├── combobox.css
│   │   ├── combo.css
│   │   ├── datagrid.css
│   │   ├── datalist.css
│   │   ├── datebox.css
│   │   ├── dialog.css
│   │   ├── easyui.css
│   │   ├── filebox.css
│   │   ├── images
│   │   │   ├── accordion_arrows.png
│   │   │   ├── blank.gif
│   │   │   ├── calendar_arrows.png
│   │   │   ├── combo_arrow.png
│   │   │   ├── datagrid_icons.png
│   │   │   ├── datebox_arrow.png
│   │   │   ├── layout_arrows.png
│   │   │   ├── linkbutton_bg.png
│   │   │   ├── loading.gif
│   │   │   ├── menu_arrows.png
│   │   │   ├── messager_icons.png
│   │   │   ├── pagination_icons.png
│   │   │   ├── panel_tools.png
│   │   │   ├── passwordbox_close.png
│   │   │   ├── passwordbox_open.png
│   │   │   ├── searchbox_button.png
│   │   │   ├── slider_handle.png
│   │   │   ├── spinner_arrows.png
│   │   │   ├── tabs_icons.png
│   │   │   ├── tagbox_icons.png
│   │   │   ├── tree_icons.png
│   │   │   └── validatebox_warning.png
│   │   ├── layout.css
│   │   ├── linkbutton.css
│   │   ├── menubutton.css
│   │   ├── menu.css
│   │   ├── messager.css
│   │   ├── numberbox.css
│   │   ├── pagination.css
│   │   ├── panel.css
│   │   ├── passwordbox.css
│   │   ├── progressbar.css
│   │   ├── propertygrid.css
│   │   ├── searchbox.css
│   │   ├── slider.css
│   │   ├── spinner.css
│   │   ├── splitbutton.css
│   │   ├── switchbutton.css
│   │   ├── tabs.css
│   │   ├── tagbox.css
│   │   ├── textbox.css
│   │   ├── tooltip.css
│   │   ├── tree.css
│   │   ├── validatebox.css
│   │   └── window.css
│   ├── gray
│   │   ├── accordion.css
│   │   ├── calendar.css
│   │   ├── combobox.css
│   │   ├── combo.css
│   │   ├── datagrid.css
│   │   ├── datalist.css
│   │   ├── datebox.css
│   │   ├── dialog.css
│   │   ├── easyui.css
│   │   ├── filebox.css
│   │   ├── images
│   │   │   ├── accordion_arrows.png
│   │   │   ├── blank.gif
│   │   │   ├── calendar_arrows.png
│   │   │   ├── combo_arrow.png
│   │   │   ├── datagrid_icons.png
│   │   │   ├── datebox_arrow.png
│   │   │   ├── layout_arrows.png
│   │   │   ├── linkbutton_bg.png
│   │   │   ├── loading.gif
│   │   │   ├── menu_arrows.png
│   │   │   ├── messager_icons.png
│   │   │   ├── pagination_icons.png
│   │   │   ├── panel_tools.png
│   │   │   ├── passwordbox_close.png
│   │   │   ├── passwordbox_open.png
│   │   │   ├── searchbox_button.png
│   │   │   ├── slider_handle.png
│   │   │   ├── spinner_arrows.png
│   │   │   ├── tabs_icons.png
│   │   │   ├── tagbox_icons.png
│   │   │   ├── tree_icons.png
│   │   │   └── validatebox_warning.png
│   │   ├── layout.css
│   │   ├── linkbutton.css
│   │   ├── menubutton.css
│   │   ├── menu.css
│   │   ├── messager.css
│   │   ├── numberbox.css
│   │   ├── pagination.css
│   │   ├── panel.css
│   │   ├── passwordbox.css
│   │   ├── progressbar.css
│   │   ├── propertygrid.css
│   │   ├── searchbox.css
│   │   ├── slider.css
│   │   ├── spinner.css
│   │   ├── splitbutton.css
│   │   ├── switchbutton.css
│   │   ├── tabs.css
│   │   ├── tagbox.css
│   │   ├── textbox.css
│   │   ├── tooltip.css
│   │   ├── tree.css
│   │   ├── validatebox.css
│   │   └── window.css
│   ├── icon.css
│   ├── icons
│   │   ├── back.png
│   │   ├── blank.gif
│   │   ├── cancel.png
│   │   ├── clear.png
│   │   ├── cut.png
│   │   ├── edit_add.png
│   │   ├── edit_remove.png
│   │   ├── filesave.png
│   │   ├── filter.png
│   │   ├── help.png
│   │   ├── large_chart.png
│   │   ├── large_clipart.png
│   │   ├── large_picture.png
│   │   ├── large_shapes.png
│   │   ├── large_smartart.png
│   │   ├── lock.png
│   │   ├── man.png
│   │   ├── mini_add.png
│   │   ├── mini_edit.png
│   │   ├── mini_refresh.png
│   │   ├── more.png
│   │   ├── no.png
│   │   ├── ok.png
│   │   ├── pencil.png
│   │   ├── print.png
│   │   ├── redo.png
│   │   ├── reload.png
│   │   ├── search.png
│   │   ├── sum.png
│   │   ├── tip.png
│   │   └── undo.png
│   ├── material
│   │   ├── accordion.css
│   │   ├── calendar.css
│   │   ├── combobox.css
│   │   ├── combo.css
│   │   ├── datagrid.css
│   │   ├── datalist.css
│   │   ├── datebox.css
│   │   ├── dialog.css
│   │   ├── easyui.css
│   │   ├── filebox.css
│   │   ├── images
│   │   │   ├── accordion_arrows.png
│   │   │   ├── blank.gif
│   │   │   ├── calendar_arrows.png
│   │   │   ├── combo_arrow.png
│   │   │   ├── datagrid_icons.png
│   │   │   ├── datebox_arrow.png
│   │   │   ├── layout_arrows.png
│   │   │   ├── linkbutton_bg.png
│   │   │   ├── loading.gif
│   │   │   ├── menu_arrows.png
│   │   │   ├── messager_icons.png
│   │   │   ├── pagination_icons.png
│   │   │   ├── panel_tools.png
│   │   │   ├── passwordbox_close.png
│   │   │   ├── passwordbox_open.png
│   │   │   ├── searchbox_button.png
│   │   │   ├── slider_handle.png
│   │   │   ├── spinner_arrows.png
│   │   │   ├── tabs_icons.png
│   │   │   ├── tagbox_icons.png
│   │   │   ├── Thumbs.db
│   │   │   ├── tree_icons.png
│   │   │   └── validatebox_warning.png
│   │   ├── layout.css
│   │   ├── linkbutton.css
│   │   ├── menubutton.css
│   │   ├── menu.css
│   │   ├── messager.css
│   │   ├── numberbox.css
│   │   ├── pagination.css
│   │   ├── panel.css
│   │   ├── passwordbox.css
│   │   ├── progressbar.css
│   │   ├── propertygrid.css
│   │   ├── searchbox.css
│   │   ├── slider.css
│   │   ├── spinner.css
│   │   ├── splitbutton.css
│   │   ├── switchbutton.css
│   │   ├── tabs.css
│   │   ├── tagbox.css
│   │   ├── textbox.css
│   │   ├── tooltip.css
│   │   ├── tree.css
│   │   ├── validatebox.css
│   │   └── window.css
│   ├── metro
│   │   ├── accordion.css
│   │   ├── calendar.css
│   │   ├── combobox.css
│   │   ├── combo.css
│   │   ├── datagrid.css
│   │   ├── datalist.css
│   │   ├── datebox.css
│   │   ├── dialog.css
│   │   ├── easyui.css
│   │   ├── filebox.css
│   │   ├── images
│   │   │   ├── accordion_arrows.png
│   │   │   ├── blank.gif
│   │   │   ├── calendar_arrows.png
│   │   │   ├── combo_arrow.png
│   │   │   ├── datagrid_icons.png
│   │   │   ├── datebox_arrow.png
│   │   │   ├── layout_arrows.png
│   │   │   ├── linkbutton_bg.png
│   │   │   ├── loading.gif
│   │   │   ├── menu_arrows.png
│   │   │   ├── messager_icons.png
│   │   │   ├── pagination_icons.png
│   │   │   ├── panel_tools.png
│   │   │   ├── passwordbox_close.png
│   │   │   ├── passwordbox_open.png
│   │   │   ├── searchbox_button.png
│   │   │   ├── slider_handle.png
│   │   │   ├── spinner_arrows.png
│   │   │   ├── tabs_icons.png
│   │   │   ├── tagbox_icons.png
│   │   │   ├── tree_icons.png
│   │   │   └── validatebox_warning.png
│   │   ├── layout.css
│   │   ├── linkbutton.css
│   │   ├── menubutton.css
│   │   ├── menu.css
│   │   ├── messager.css
│   │   ├── numberbox.css
│   │   ├── pagination.css
│   │   ├── panel.css
│   │   ├── passwordbox.css
│   │   ├── progressbar.css
│   │   ├── propertygrid.css
│   │   ├── searchbox.css
│   │   ├── slider.css
│   │   ├── spinner.css
│   │   ├── splitbutton.css
│   │   ├── switchbutton.css
│   │   ├── tabs.css
│   │   ├── tagbox.css
│   │   ├── textbox.css
│   │   ├── tooltip.css
│   │   ├── tree.css
│   │   ├── validatebox.css
│   │   └── window.css
│   └── mobile.css
├── fancybox
│   ├── blank.gif
│   ├── fancybox.png
│   ├── fancybox-x.png
│   ├── fancybox-y.png
│   ├── fancy_title_over.png
│   ├── jquery.fancybox-1.3.4.css
│   ├── jquery.fancybox-1.3.4.pack.js
│   └── jquery.mousewheel-3.0.4.pack.js
├── front
│   ├── css
│   │   ├── bootstrap.min.css
│   │   ├── login.css
│   │   └── supersized.css
│   ├── fonts
│   │   ├── glyphicons-halflings-regular.eot
│   │   ├── glyphicons-halflings-regular.svg
│   │   ├── glyphicons-halflings-regular.ttf
│   │   └── glyphicons-halflings-regular.woff
│   ├── images
│   │   ├── 1.png
│   │   ├── backgrounds
│   │   │   ├── 0.jpg
│   │   │   ├── 1.jpg
│   │   │   ├── 2.jpg
│   │   │   ├── 3.jpg
│   │   │   └── Thumbs.db
│   │   ├── captcha.jpeg
│   │   ├── error.png
│   │   ├── loading.gif
│   │   └── logo.png
│   ├── js
│   │   ├── html5.js
│   │   ├── jquery-1.8.2.min.js
│   │   ├── jquery.form.js
│   │   ├── login.js
│   │   ├── scripts.js
│   │   ├── supersized.3.2.7.min.js
│   │   ├── supersized-init.js
│   │   └── tooltips.js
│   └── userManage
│   ├── consumptionRecord.jsp
│   ├── index.jsp
│   ├── register.jsp
│   ├── userDelete.jsp
│   └── userUpdata.jsp
├── images
│   ├── accrodianicon.png
│   ├── add1.jpg
│   ├── add2.jpg
│   ├── archieve.png
│   ├── avtar.jpg
│   ├── bg_control_nav.png
│   ├── bg_direction_nav.png
│   ├── bigimg1.jpg
│   ├── bigimg2.jpg
│   ├── bigimg3.jpg
│   ├── blockquote.png
│   ├── blockquotestyle.png
│   ├── blogicon.png
│   ├── borderbottom.jpg
│   ├── crossline.png
│   ├── daticon.png
│   ├── foodicon.png
│   ├── footerbg.png
│   ├── footericon.png
│   ├── gotop.png
│   ├── linebottom.png
│   ├── list1.png
│   ├── list2.png
│   ├── list3.png
│   ├── list4.png
│   ├── list5.png
│   ├── list6.png
│   ├── logo.png
│   ├── mainbg.jpg
│   ├── messages.png
│   ├── mobilemuarrow.png
│   ├── nav.png
│   ├── ourteamimg.jpg
│   ├── rate.png
│   ├── receipenote.png
│   ├── recipethumb1.jpg
│   ├── recipethumb2.jpg
│   ├── recipethumb3.jpg
│   ├── roundimg.png
│   ├── search.png
│   ├── sliderimg1.jpg
│   ├── sliderimg2.jpg
│   ├── smallarrow.png
│   ├── smallarrowwhite.png
│   ├── smallimg2.jpg
│   ├── spiral.png
│   ├── texturebg.png
│   └── view.png
├── img
│   ├── 10.jpg
│   ├── 11.jpg
│   ├── 12.jpg
│   ├── 13.jpg
│   ├── 14.jpg
│   ├── 15.jpg
│   ├── 16.jpg
│   ├── 1.jpg
│   ├── 2.jpg
│   ├── 3.jpg
│   ├── 4.jpg
│   ├── 5.jpg
│   ├── 6.jpg
│   ├── 7.jpg
│   ├── 8.jpg
│   └── 9.jpg
├── indent.jsp
├── index-2.jsp
├── index.jsp
├── js
│   ├── html5.js
│   ├── jflickrfeed.min.js
│   ├── jquery.easing.1.3.js
│   ├── jquery.elastislide.js
│   ├── jquery.flexslider-min.js
│   ├── jquery.gmap.js
│   ├── jquery.isotope.min.js
│   ├── jquery-latest.js
│   ├── jquery.tweet.js
│   ├── jquery.validate.js
│   ├── mediaelement-and-player.min.js
│   └── script.js
├── management
│   ├── management.jsp
│   └── tree_data.json
├── META-INF
│   └── MANIFEST.MF
├── orderForm.jsp
├── order.jsp
├── recipeimg
│   ├── recipeimg1big.jpg
│   ├── recipeimg1.jpg
│   ├── recipeimg2big.jpg
│   ├── recipeimg2.jpg
│   ├── recipeimg3big.jpg
│   └── recipeimg3.jpg
├── setTheTable.jsp
├── ttl
│   └── FuncTion.js
├── WEB-INF
│   ├── lib
│   │   ├── fastjson-1.2.47.jar
│   │   ├── jstl-1.2.jar
│   │   ├── mysql-java-5.1.5.jar
│   │   └── standard-1.1.2.jar
│   ├── web.xml
│   ├── web.xml.mine
│   ├── web.xml.r215
│   └── web.xml.r50
└── xxx.jsp

79 directories, 840 files

标签:

实例下载地址

JavaWeb餐厅管理系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警