在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 整合SSM框架实现的酒店管理系统

整合SSM框架实现的酒店管理系统

一般编程问题

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

实例介绍

【实例简介】
使用Oracle,Myeclipse数据表大概为35张左右,实现酒店的工作流程。里面附当时的需求文档,数据库转存文件。
【实例截图】
【核心代码】
项目终篇
└── 项目终篇
├── 6-9.sql
├── TongFuHotelMS
│   ├── WebRoot
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── WEB-INF
│   │   │   ├── classes
│   │   │   │   ├── com
│   │   │   │   │   ├── controller
│   │   │   │   │   │   ├── BreakDown.class
│   │   │   │   │   │   ├── DepotInfoController.class
│   │   │   │   │   │   ├── DepotProductController.class
│   │   │   │   │   │   ├── LiveInfoController.class
│   │   │   │   │   │   ├── LoginController.class
│   │   │   │   │   │   ├── MyRoleCodeController.class
│   │   │   │   │   │   ├── ProductInfoController.class
│   │   │   │   │   │   ├── ProductSalController.class
│   │   │   │   │   │   ├── PurchaseOrderController.class
│   │   │   │   │   │   ├── PurchasePayController.class
│   │   │   │   │   │   ├── PurchasePlanController.class
│   │   │   │   │   │   ├── Reporting.class
│   │   │   │   │   │   ├── ReturnProductController.class
│   │   │   │   │   │   ├── RoomISTController.class
│   │   │   │   │   │   ├── RoomInfoController.class
│   │   │   │   │   │   ├── StiorageController.class
│   │   │   │   │   │   ├── SuperCustomerController.class
│   │   │   │   │   │   ├── UsersController.class
│   │   │   │   │   │   └── ceshi.class
│   │   │   │   │   ├── dao
│   │   │   │   │   │   ├── DepotInfoDao.class
│   │   │   │   │   │   ├── DepotInfoMapper.xml
│   │   │   │   │   │   ├── DepotProductDao.class
│   │   │   │   │   │   ├── DepotProductMapper.xml
│   │   │   │   │   │   ├── LiveInfoDao.class
│   │   │   │   │   │   ├── LiveInfoMapper.xml
│   │   │   │   │   │   ├── LoginCheck.class
│   │   │   │   │   │   ├── LoginCheck.xml
│   │   │   │   │   │   ├── ProductInfoDao.class
│   │   │   │   │   │   ├── ProductInfoMapper.xml
│   │   │   │   │   │   ├── ProductSalDao.class
│   │   │   │   │   │   ├── ProductSalDaoImpl.xml
│   │   │   │   │   │   ├── PurchaseOrderDao.class
│   │   │   │   │   │   ├── PurchaseOrderMapper.xml
│   │   │   │   │   │   ├── PurchasePayDao.class
│   │   │   │   │   │   ├── PurchasePayMapper.xml
│   │   │   │   │   │   ├── PurchasePlanDao.class
│   │   │   │   │   │   ├── PurchasePlanMapper.xml
│   │   │   │   │   │   ├── ReturnProductDao.class
│   │   │   │   │   │   ├── ReturnProductMapper.xml
│   │   │   │   │   │   ├── RoomInfoDao.class
│   │   │   │   │   │   ├── RoomInfoMapper.xml
│   │   │   │   │   │   ├── RoomInfoStartType.class
│   │   │   │   │   │   ├── RoomInfoStartType.xml
│   │   │   │   │   │   ├── StiorageDao.class
│   │   │   │   │   │   ├── StiorageMapper.xml
│   │   │   │   │   │   ├── SuperCustomerDao.class
│   │   │   │   │   │   ├── SuperCustomerMapper.xml
│   │   │   │   │   │   ├── UserMyRoleDao.class
│   │   │   │   │   │   ├── UserMyRoleMapper.xml
│   │   │   │   │   │   ├── UsersInfo.class
│   │   │   │   │   │   └── UsersInfo.xml
│   │   │   │   │   ├── entity
│   │   │   │   │   │   ├── Bad.class
│   │   │   │   │   │   ├── BreakDetai.class
│   │   │   │   │   │   ├── CardTable.class
│   │   │   │   │   │   ├── CheckProduct.class
│   │   │   │   │   │   ├── Checkout.class
│   │   │   │   │   │   ├── CustomerBreak.class
│   │   │   │   │   │   ├── CustomerType.class
│   │   │   │   │   │   ├── DepotInfo.class
│   │   │   │   │   │   ├── DepotProduct.class
│   │   │   │   │   │   ├── JiaoJie.class
│   │   │   │   │   │   ├── LiveInfo.class
│   │   │   │   │   │   ├── MyRole.class
│   │   │   │   │   │   ├── MyRoleRightCode.class
│   │   │   │   │   │   ├── ProductBill.class
│   │   │   │   │   │   ├── ProductInfo.class
│   │   │   │   │   │   ├── PurchaseOrder.class
│   │   │   │   │   │   ├── PurchaseOrderDetail.class
│   │   │   │   │   │   ├── PurchasePay.class
│   │   │   │   │   │   ├── PurchasePayDetail.class
│   │   │   │   │   │   ├── PurchasePlan.class
│   │   │   │   │   │   ├── PurchasePlanDetail.class
│   │   │   │   │   │   ├── ReserveInfo.class
│   │   │   │   │   │   ├── ReturnProduct.class
│   │   │   │   │   │   ├── ReturnProductDetail.class
│   │   │   │   │   │   ├── RightCode.class
│   │   │   │   │   │   ├── RoomInfo.class
│   │   │   │   │   │   ├── RoomState.class
│   │   │   │   │   │   ├── RoomType.class
│   │   │   │   │   │   ├── Spend.class
│   │   │   │   │   │   ├── SpendInfo.class
│   │   │   │   │   │   ├── SpendProdut.class
│   │   │   │   │   │   ├── Stiorage.class
│   │   │   │   │   │   ├── StiorageDetail.class
│   │   │   │   │   │   ├── SuperCustomer.class
│   │   │   │   │   │   └── Users.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── DepotInfoService.class
│   │   │   │   │   ├── DepotProductService.class
│   │   │   │   │   ├── LiveInfoService.class
│   │   │   │   │   ├── LoginCheckService.class
│   │   │   │   │   ├── MyRoleColdService.class
│   │   │   │   │   ├── ProductInfoService.class
│   │   │   │   │   ├── ProductSalService.class
│   │   │   │   │   ├── PurchaseOrderService.class
│   │   │   │   │   ├── PurchasePayService.class
│   │   │   │   │   ├── PurchasePlanService.class
│   │   │   │   │   ├── ReturnProductService.class
│   │   │   │   │   ├── RoomInfoService.class
│   │   │   │   │   ├── RoomInfoStartTypeService.class
│   │   │   │   │   ├── StiorageService.class
│   │   │   │   │   ├── SuperCustomerService.class
│   │   │   │   │   └── UsersService.class
│   │   │   │   └── config
│   │   │   │   ├── jdbc.properties
│   │   │   │   ├── spring-mvc.xml
│   │   │   │   ├── spring-mybatis.xml
│   │   │   │   └── sqlMapConfig.xml
│   │   │   ├── lib
│   │   │   │   ├── aopalliance-1.0.jar
│   │   │   │   ├── aspectjrt.jar
│   │   │   │   ├── aspectjweaver.jar
│   │   │   │   ├── commons-dbcp-1.4.jar
│   │   │   │   ├── commons-fileupload-1.3.2.jar
│   │   │   │   ├── commons-io-2.5.jar
│   │   │   │   ├── commons-logging.jar
│   │   │   │   ├── commons-pool.jar
│   │   │   │   ├── jackson-all-1.7.6.jar
│   │   │   │   ├── jstl-1.2.jar
│   │   │   │   ├── log4j-1.2.15.jar
│   │   │   │   ├── mybatis-3.4.1.jar
│   │   │   │   ├── mybatis-spring-1.3.0.jar
│   │   │   │   ├── ojdbc6.jar
│   │   │   │   ├── spring-aop-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-aspects-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-beans-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-build-src-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-context-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-context-support-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-core-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-expression-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-framework-bom-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-instrument-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-instrument-tomcat-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-jdbc-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-jms-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-orm-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-oxm-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-struts-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-test-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-tx-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-web-3.2.9.RELEASE.jar
│   │   │   │   ├── spring-webmvc-3.2.9.RELEASE.jar
│   │   │   │   └── spring-webmvc-portlet-3.2.9.RELEASE.jar
│   │   │   └── web.xml
│   │   ├── css
│   │   │   ├── bootstrap-responsive.css
│   │   │   ├── bootstrap-responsive.min.css
│   │   │   ├── bootstrap-responsive1.css
│   │   │   ├── bootstrap-theme.css
│   │   │   ├── bootstrap-theme.css.map
│   │   │   ├── bootstrap-theme.min.css
│   │   │   ├── bootstrap.css
│   │   │   ├── bootstrap.css.map
│   │   │   ├── bootstrap.min.css
│   │   │   ├── bootstrap.min1.css
│   │   │   ├── bootstrap1.css
│   │   │   ├── d.css
│   │   │   ├── demo.css
│   │   │   ├── demo1.css
│   │   │   ├── demo3.css
│   │   │   ├── hover.css
│   │   │   ├── main.css
│   │   │   ├── normalize.css
│   │   │   ├── pace-theme-barber-shop.css
│   │   │   ├── pace-theme-barber-shop1.css
│   │   │   ├── style.css
│   │   │   ├── style3.css
│   │   │   ├── stylel.css
│   │   │   └── vertical.news.slider.css
│   │   ├── image
│   │   │   ├── 1.gif
│   │   │   ├── 1.jpg
│   │   │   ├── 129.jpg
│   │   │   ├── drug.png
│   │   │   ├── log.jpg
│   │   │   ├── login.jpeg
│   │   │   ├── pic
│   │   │   │   ├── 3.jpg
│   │   │   │   ├── 4.jpg
│   │   │   │   └── 6.jpg
│   │   │   ├── s.jpg
│   │   │   └── top.gif
│   │   ├── images
│   │   │   ├── 01.png
│   │   │   ├── 02.PNG
│   │   │   ├── 03.PNG
│   │   │   ├── 04.PNG
│   │   │   ├── 05.PNG
│   │   │   ├── 06.PNG
│   │   │   ├── 07.PNG
│   │   │   ├── 08.PNG
│   │   │   ├── 09.PNG
│   │   │   ├── 10.PNG
│   │   │   ├── 11.PNG
│   │   │   ├── 12.PNG
│   │   │   ├── 13.PNG
│   │   │   ├── 14.PNG
│   │   │   ├── 15.PNG
│   │   │   ├── 16.PNG
│   │   │   ├── 17.PNG
│   │   │   ├── 18.PNG
│   │   │   ├── 19.PNG
│   │   │   ├── 20.PNG
│   │   │   ├── 21.PNG
│   │   │   ├── 22.PNG
│   │   │   ├── 23.PNG
│   │   │   ├── 24.PNG
│   │   │   ├── 25.PNG
│   │   │   ├── ball1.png
│   │   │   ├── bg.gif
│   │   │   ├── bg.jpg
│   │   │   ├── p1.jpg
│   │   │   ├── pay1.png
│   │   │   ├── pay2.png
│   │   │   ├── pay3.png
│   │   │   ├── subball1.png
│   │   │   ├── subball2.png
│   │   │   ├── subball3.png
│   │   │   ├── subball4.png
│   │   │   ├── subball5.png
│   │   │   ├── subball6.png
│   │   │   ├── subball7.png
│   │   │   └── subball8.png
│   │   ├── img
│   │   │   ├── bg.jpg
│   │   │   ├── bg2.jpg
│   │   │   ├── deco.svg
│   │   │   ├── demo-1-bg.jpg
│   │   │   ├── demo-2-bg.jpg
│   │   │   ├── related
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   └── 4.jpg
│   │   │   └── sponsor
│   │   │   ├── bg.jpg
│   │   │   ├── deco.png
│   │   │   ├── deco2.svg
│   │   │   └── jupiter_logo.svg
│   │   ├── js
│   │   │   ├── EasePack.min.js
│   │   │   ├── Regular.js
│   │   │   ├── TweenLite.min.js
│   │   │   ├── anime.min.js
│   │   │   ├── bootstrap-modal.js
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── d.js
│   │   │   ├── datagrid-detailview.js
│   │   │   ├── demo-1.js
│   │   │   ├── ichart.1.2.min.js
│   │   │   ├── jquery-1.8.0.js
│   │   │   ├── jquery-ui.js
│   │   │   ├── jquery.easyui.min.js
│   │   │   ├── jquery.easyui.min1.js
│   │   │   ├── jquery.easyui.mobile.js
│   │   │   ├── jquery.fireworks.js
│   │   │   ├── jquery.js
│   │   │   ├── jquery.min.js
│   │   │   ├── jquery.ripples.js
│   │   │   ├── jquery.table2excel.min.js
│   │   │   ├── mymouse.js
│   │   │   ├── npm.js
│   │   │   ├── pace.js
│   │   │   ├── prefixfree.min.js
│   │   │   ├── rAF.js
│   │   │   └── vertical.news.slider.min.js
│   │   ├── layer
│   │   │   ├── layer.js
│   │   │   ├── mobile
│   │   │   │   ├── layer.js
│   │   │   │   └── need
│   │   │   │   └── layer.css
│   │   │   └── skin
│   │   │   └── default
│   │   │   ├── icon-ext.png
│   │   │   ├── icon.png
│   │   │   ├── layer.css
│   │   │   ├── loading-0.gif
│   │   │   ├── loading-1.gif
│   │   │   └── loading-2.gif
│   │   ├── login.jsp
│   │   ├── scss
│   │   │   └── style.scss
│   │   ├── themes
│   │   │   ├── black
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── bootstrap
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── color.css
│   │   │   ├── default
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── gray
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── 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
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── datagrid.css
│   │   │   │   ├── datalist.css
│   │   │   │   ├── datebox.css
│   │   │   │   ├── dialog.css
│   │   │   │   ├── easyui.css
│   │   │   │   ├── filebox.css
│   │   │   │   ├── images
│   │   │   │   │   ├── Thumbs.db
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── metro
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── metro-orange
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── searchbox_button.png
│   │   │   │   │   ├── slider_handle.png
│   │   │   │   │   ├── spinner_arrows.png
│   │   │   │   │   ├── tabs_icons.png
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── switchbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   └── mobile.css
│   │   ├── themes2
│   │   │   ├── black
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── bootstrap
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── color.css
│   │   │   ├── default
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── gray
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── 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
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── datagrid.css
│   │   │   │   ├── datalist.css
│   │   │   │   ├── datebox.css
│   │   │   │   ├── dialog.css
│   │   │   │   ├── easyui.css
│   │   │   │   ├── filebox.css
│   │   │   │   ├── images
│   │   │   │   │   ├── Thumbs.db
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── metro
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── metro-orange
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── searchbox_button.png
│   │   │   │   │   ├── slider_handle.png
│   │   │   │   │   ├── spinner_arrows.png
│   │   │   │   │   ├── tabs_icons.png
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── switchbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   └── mobile.css
│   │   ├── themess
│   │   │   ├── black
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── bootstrap
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── color.css
│   │   │   ├── default
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── gray
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── 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
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── datagrid.css
│   │   │   │   ├── datalist.css
│   │   │   │   ├── datebox.css
│   │   │   │   ├── dialog.css
│   │   │   │   ├── easyui.css
│   │   │   │   ├── filebox.css
│   │   │   │   ├── images
│   │   │   │   │   ├── Thumbs.db
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── metro
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── combobox.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
│   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   └── validatebox_warning.png
│   │   │   │   ├── layout.css
│   │   │   │   ├── linkbutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── menubutton.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
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   └── mobile.css
│   │   └── view
│   │   ├── AddProductSal.jsp
│   │   ├── AddPurchasePlan.jsp
│   │   ├── Bad.jsp
│   │   ├── BreakDown.jsp
│   │   ├── CheckoutCha.jsp
│   │   ├── Count.jsp
│   │   ├── FindPurchaseOrder.jsp
│   │   ├── FindPurchaseOrderDetail.jsp
│   │   ├── FindPurchasePay.jsp
│   │   ├── FindPurchasePayDetail.jsp
│   │   ├── FindPurchasePlan.jsp
│   │   ├── FindPurchasePlanDetail.jsp
│   │   ├── FindStiorages.jsp
│   │   ├── FindsReturnProduct.jsp
│   │   ├── LiveInfo.jsp
│   │   ├── LiveInfoShow.jsp
│   │   ├── LiveinfoZhu.jsp
│   │   ├── MyJsp.jsp
│   │   ├── OK.jsp
│   │   ├── OK1.jsp
│   │   ├── Profit.jsp
│   │   ├── PurchasePay.jsp
│   │   ├── Reserve.jsp
│   │   ├── ReserveInfo.jsp
│   │   ├── ReserveLiveinfo.jsp
│   │   ├── ReserveYu.jsp
│   │   ├── ReturnProduct.jsp
│   │   ├── SelectBreak2.jsp
│   │   ├── SelectProductSal2.jsp
│   │   ├── SerchBreak.jsp
│   │   ├── SerchProductSal.jsp
│   │   ├── Stiorage.jsp
│   │   ├── UpdateTai.jsp
│   │   ├── UserUpdate.jsp
│   │   ├── UsersAdd.jsp
│   │   ├── UsersInfo.jsp
│   │   ├── daohang.jsp
│   │   ├── insertDepotInfo.jsp
│   │   ├── insertMoney.jsp
│   │   ├── insertProductInfo.jsp
│   │   ├── insertRoom.jsp
│   │   ├── insertRoomType.jsp
│   │   ├── insertSuperCustomer.jsp
│   │   ├── jiaojie.jsp
│   │   ├── main.jsp
│   │   ├── main1.jsp
│   │   ├── searchYingXiang.jsp
│   │   ├── selectJiaojie.jsp
│   │   ├── showDepotInfo.jsp
│   │   ├── showDepotProduct.jsp
│   │   ├── showProductInfo.jsp
│   │   ├── showProductInfoT.jsp
│   │   ├── showRoom.jsp
│   │   ├── showRoomType.jsp
│   │   ├── showSuperCustomer.jsp
│   │   ├── updateDepotInfo.jsp
│   │   ├── updateLiveInfo.jsp
│   │   ├── updateProductInfo.jsp
│   │   ├── updateRoom.jsp
│   │   ├── updateRoomType.jsp
│   │   ├── updateSuperCustomer.jsp
│   │   └── updatejiaojie.jsp
│   └── src
│   ├── com
│   │   ├── controller
│   │   │   ├── BreakDown.java
│   │   │   ├── DepotInfoController.java
│   │   │   ├── DepotProductController.java
│   │   │   ├── LiveInfoController.java
│   │   │   ├── LoginController.java
│   │   │   ├── MyRoleCodeController.java
│   │   │   ├── ProductInfoController.java
│   │   │   ├── ProductSalController.java
│   │   │   ├── PurchaseOrderController.java
│   │   │   ├── PurchasePayController.java
│   │   │   ├── PurchasePlanController.java
│   │   │   ├── Reporting.java
│   │   │   ├── ReturnProductController.java
│   │   │   ├── RoomISTController.java
│   │   │   ├── RoomInfoController.java
│   │   │   ├── StiorageController.java
│   │   │   ├── SuperCustomerController.java
│   │   │   ├── UsersController.java
│   │   │   └── ceshi.java
│   │   ├── dao
│   │   │   ├── DepotInfoDao.java
│   │   │   ├── DepotInfoMapper.xml
│   │   │   ├── DepotProductDao.java
│   │   │   ├── DepotProductMapper.xml
│   │   │   ├── LiveInfoDao.java
│   │   │   ├── LiveInfoMapper.xml
│   │   │   ├── LoginCheck.java
│   │   │   ├── LoginCheck.xml
│   │   │   ├── ProductInfoDao.java
│   │   │   ├── ProductInfoMapper.xml
│   │   │   ├── ProductSalDao.java
│   │   │   ├── ProductSalDaoImpl.xml
│   │   │   ├── PurchaseOrderDao.java
│   │   │   ├── PurchaseOrderMapper.xml
│   │   │   ├── PurchasePayDao.java
│   │   │   ├── PurchasePayMapper.xml
│   │   │   ├── PurchasePlanDao.java
│   │   │   ├── PurchasePlanMapper.xml
│   │   │   ├── ReturnProductDao.java
│   │   │   ├── ReturnProductMapper.xml
│   │   │   ├── RoomInfoDao.java
│   │   │   ├── RoomInfoMapper.xml
│   │   │   ├── RoomInfoStartType.java
│   │   │   ├── RoomInfoStartType.xml
│   │   │   ├── StiorageDao.java
│   │   │   ├── StiorageMapper.xml
│   │   │   ├── SuperCustomerDao.java
│   │   │   ├── SuperCustomerMapper.xml
│   │   │   ├── UserMyRoleDao.java
│   │   │   ├── UserMyRoleMapper.xml
│   │   │   ├── UsersInfo.java
│   │   │   └── UsersInfo.xml
│   │   ├── entity
│   │   │   ├── Bad.java
│   │   │   ├── BreakDetai.java
│   │   │   ├── CardTable.java
│   │   │   ├── CheckProduct.java
│   │   │   ├── Checkout.java
│   │   │   ├── CustomerBreak.java
│   │   │   ├── CustomerType.java
│   │   │   ├── DepotInfo.java
│   │   │   ├── DepotProduct.java
│   │   │   ├── JiaoJie.java
│   │   │   ├── LiveInfo.java
│   │   │   ├── MyRole.java
│   │   │   ├── MyRoleRightCode.java
│   │   │   ├── ProductBill.java
│   │   │   ├── ProductInfo.java
│   │   │   ├── PurchaseOrder.java
│   │   │   ├── PurchaseOrderDetail.java
│   │   │   ├── PurchasePay.java
│   │   │   ├── PurchasePayDetail.java
│   │   │   ├── PurchasePlan.java
│   │   │   ├── PurchasePlanDetail.java
│   │   │   ├── ReserveInfo.java
│   │   │   ├── ReturnProduct.java
│   │   │   ├── ReturnProductDetail.java
│   │   │   ├── RightCode.java
│   │   │   ├── RoomInfo.java
│   │   │   ├── RoomState.java
│   │   │   ├── RoomType.java
│   │   │   ├── Spend.java
│   │   │   ├── SpendInfo.java
│   │   │   ├── SpendProdut.java
│   │   │   ├── Stiorage.java
│   │   │   ├── StiorageDetail.java
│   │   │   ├── SuperCustomer.java
│   │   │   └── Users.java
│   │   └── service
│   │   ├── DepotInfoService.java
│   │   ├── DepotProductService.java
│   │   ├── LiveInfoService.java
│   │   ├── LoginCheckService.java
│   │   ├── MyRoleColdService.java
│   │   ├── ProductInfoService.java
│   │   ├── ProductSalService.java
│   │   ├── PurchaseOrderService.java
│   │   ├── PurchasePayService.java
│   │   ├── PurchasePlanService.java
│   │   ├── ReturnProductService.java
│   │   ├── RoomInfoService.java
│   │   ├── RoomInfoStartTypeService.java
│   │   ├── StiorageService.java
│   │   ├── SuperCustomerService.java
│   │   └── UsersService.java
│   └── config
│   ├── jdbc.properties
│   ├── spring-mvc.xml
│   ├── spring-mybatis.xml
│   └── sqlMapConfig.xml
├── 删除.txt
└── 业务需求说明书--第五组6.7.doc

81 directories, 1599 files

标签:

实例下载地址

整合SSM框架实现的酒店管理系统

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警