在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → javaWeb SSH进销存管理系统源代码

javaWeb SSH进销存管理系统源代码

一般编程问题

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

实例介绍

【实例简介】
JAVA进销存系统,内含用户管理,系统管理,商品管理,客户/供应商管理,出入库管理,库存管理,系统功能完整,无BUG,界面洁简美观. 开发技术:java + SSH+Ext + mysql 进销存业务功能完整,代码结构分层清晰。
【实例截图】
【核心代码】
javaWebERP管理系统源码
└── javaWeb进销存管理系统源代码
├── 1.png
├── 2.png
├── 3.png
├── 4.png
├── 5.png
├── bsale
│   ├── resources
│   │   ├── config.properties
│   │   ├── ehcache.xml
│   │   ├── log4j.properties
│   │   ├── spring-ehcache.xml
│   │   ├── spring-hibernate.xml
│   │   ├── spring-tasks.xml
│   │   └── spring.xml
│   ├── src
│   │   └── light
│   │   └── mvc
│   │   ├── controller
│   │   │   ├── auth
│   │   │   │   ├── AccessController.java
│   │   │   │   ├── IndexController.java
│   │   │   │   ├── RoleController.java
│   │   │   │   └── UserController.java
│   │   │   └── basic
│   │   │   ├── BranchclassController.java
│   │   │   ├── BranchController.java
│   │   │   ├── CusclassController.java
│   │   │   ├── CusinfoController.java
│   │   │   ├── EmployeeController.java
│   │   │   ├── ItembrandController.java
│   │   │   ├── ItemclassController.java
│   │   │   ├── ItemController.java
│   │   │   ├── ItempropertyController.java
│   │   │   ├── PaymentController.java
│   │   │   ├── SupclassController.java
│   │   │   └── SupinfoController.java
│   │   ├── dao
│   │   │   ├── BaseDaoI.java
│   │   │   └── impl
│   │   │   └── BaseDaoImpl.java
│   │   ├── framework
│   │   │   ├── constant
│   │   │   │   └── GlobalConstant.java
│   │   │   ├── exception
│   │   │   │   └── ServiceException.java
│   │   │   ├── interceptors
│   │   │   │   └── SecurityInterceptor.java
│   │   │   ├── tool
│   │   │   │   ├── Grid.java
│   │   │   │   ├── Json.java
│   │   │   │   ├── PageFilter.java
│   │   │   │   ├── SessionInfo.java
│   │   │   │   └── Tree.java
│   │   │   └── web
│   │   │   └── BaseController.java
│   │   ├── model
│   │   │   ├── auth
│   │   │   │   ├── Taccess.java
│   │   │   │   ├── Trole.java
│   │   │   │   └── Tuser.java
│   │   │   └── basic
│   │   │   ├── Tbranchclass.java
│   │   │   ├── Tbranch.java
│   │   │   ├── Tcusclass.java
│   │   │   ├── Tcusinfo.java
│   │   │   ├── Temployee.java
│   │   │   ├── Titembrand.java
│   │   │   ├── Titemclass.java
│   │   │   ├── Titem.java
│   │   │   ├── Titemproperty.java
│   │   │   ├── Tpayment.java
│   │   │   ├── Tsupclass.java
│   │   │   └── Tsupinfo.java
│   │   ├── pageModel
│   │   │   ├── auth
│   │   │   │   ├── Access.java
│   │   │   │   ├── Role.java
│   │   │   │   └── User.java
│   │   │   └── basic
│   │   │   ├── Branchclass.java
│   │   │   ├── Branch.java
│   │   │   ├── Cusclass.java
│   │   │   ├── Cusinfo.java
│   │   │   ├── Employee.java
│   │   │   ├── Itembrand.java
│   │   │   ├── Itemclass.java
│   │   │   ├── Item.java
│   │   │   ├── Itemproperty.java
│   │   │   ├── Payment.java
│   │   │   ├── Supclass.java
│   │   │   └── Supinfo.java
│   │   ├── service
│   │   │   ├── auth
│   │   │   │   ├── AccessServiceI.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── AccessServiceImpl.java
│   │   │   │   │   ├── RoleServiceImpl.java
│   │   │   │   │   └── UserServiceImpl.java
│   │   │   │   ├── RoleServiceI.java
│   │   │   │   └── UserServiceI.java
│   │   │   ├── basic
│   │   │   │   ├── BranchclassServiceI.java
│   │   │   │   ├── BranchServiceI.java
│   │   │   │   ├── CusclassServiceI.java
│   │   │   │   ├── CusinfoServiceI.java
│   │   │   │   ├── EmployeeServiceI.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── BranchclassServiceImpl.java
│   │   │   │   │   ├── BranchServiceImpl.java
│   │   │   │   │   ├── CusclassServiceImpl.java
│   │   │   │   │   ├── CusinfoServiceImpl.java
│   │   │   │   │   ├── EmployeeServiceImpl.java
│   │   │   │   │   ├── ItembrandServiceImpl.java
│   │   │   │   │   ├── ItemclassServiceImpl.java
│   │   │   │   │   ├── ItempropertyServiceImpl.java
│   │   │   │   │   ├── ItemServiceImpl.java
│   │   │   │   │   ├── PaymentServiceImpl.java
│   │   │   │   │   ├── SupclassServiceImpl.java
│   │   │   │   │   └── SupinfoServiceImpl.java
│   │   │   │   ├── ItembrandServiceI.java
│   │   │   │   ├── ItemclassServiceI.java
│   │   │   │   ├── ItempropertyServiceI.java
│   │   │   │   ├── ItemServiceI.java
│   │   │   │   ├── PaymentServiceI.java
│   │   │   │   ├── SupclassServiceI.java
│   │   │   │   └── SupinfoServiceI.java
│   │   │   └── task
│   │   │   ├── impl
│   │   │   │   └── TaskDemoServiceImpl.java
│   │   │   └── TaskDemoServiceI.java
│   │   └── utils
│   │   ├── FastJsonHttpMessageConverter.java
│   │   ├── MD5Util.java
│   │   ├── PropertiesLoader.java
│   │   ├── StringEscapeEditor.java
│   │   └── StringUtil.java
│   └── WebRoot
│   ├── error
│   │   ├── 404.jsp
│   │   ├── 500.jsp
│   │   ├── noSecurity.jsp
│   │   └── noSession.jsp
│   ├── index.jsp
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── static
│   │   ├── easyui1.4
│   │   │   ├── jquery.easyui.min.js
│   │   │   ├── 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-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
│   │   │   └── themes
│   │   │   ├── black
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── bootstrap
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── color.css
│   │   │   ├── default
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── gray
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.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
│   │   │   │   ├── no.png
│   │   │   │   ├── ok.png
│   │   │   │   ├── pencil.png
│   │   │   │   ├── print.png
│   │   │   │   ├── redo.png
│   │   │   │   ├── reload.png
│   │   │   │   ├── search.png
│   │   │   │   ├── sum.png
│   │   │   │   ├── tip.png
│   │   │   │   └── undo.png
│   │   │   ├── metro
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.css
│   │   │   │   ├── datebox.css
│   │   │   │   ├── dialog.css
│   │   │   │   ├── easyui.css
│   │   │   │   ├── easyui.css.bak
│   │   │   │   ├── 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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── MetroBlue
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.css
│   │   │   │   ├── datebox.css
│   │   │   │   ├── dialog.css
│   │   │   │   ├── easyui_bak.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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── MetroGray
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.css
│   │   │   │   ├── datebox.css
│   │   │   │   ├── dialog.css
│   │   │   │   ├── easyui_bak.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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── MetroGreen
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.css
│   │   │   │   ├── datebox.css
│   │   │   │   ├── dialog.css
│   │   │   │   ├── easyui_bak.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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   ├── MetroOrange
│   │   │   │   ├── accordion.css
│   │   │   │   ├── calendar.css
│   │   │   │   ├── combobox.css
│   │   │   │   ├── combo.css
│   │   │   │   ├── datagrid.css
│   │   │   │   ├── datebox.css
│   │   │   │   ├── dialog.css
│   │   │   │   ├── easyui_bak.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
│   │   │   │   ├── menubutton.css
│   │   │   │   ├── menu.css
│   │   │   │   ├── messager.css
│   │   │   │   ├── numberbox.css
│   │   │   │   ├── pagination.css
│   │   │   │   ├── panel.css
│   │   │   │   ├── progressbar.css
│   │   │   │   ├── propertygrid.css
│   │   │   │   ├── searchbox.css
│   │   │   │   ├── slider.css
│   │   │   │   ├── spinner.css
│   │   │   │   ├── splitbutton.css
│   │   │   │   ├── tabs.css
│   │   │   │   ├── textbox.css
│   │   │   │   ├── tooltip.css
│   │   │   │   ├── tree.css
│   │   │   │   ├── validatebox.css
│   │   │   │   └── window.css
│   │   │   └── MetroRed
│   │   │   ├── accordion.css
│   │   │   ├── calendar.css
│   │   │   ├── combobox.css
│   │   │   ├── combo.css
│   │   │   ├── datagrid.css
│   │   │   ├── datebox.css
│   │   │   ├── dialog.css
│   │   │   ├── easyui_bak.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
│   │   │   ├── menubutton.css
│   │   │   ├── menu.css
│   │   │   ├── messager.css
│   │   │   ├── numberbox.css
│   │   │   ├── pagination.css
│   │   │   ├── panel.css
│   │   │   ├── progressbar.css
│   │   │   ├── propertygrid.css
│   │   │   ├── searchbox.css
│   │   │   ├── slider.css
│   │   │   ├── spinner.css
│   │   │   ├── splitbutton.css
│   │   │   ├── tabs.css
│   │   │   ├── textbox.css
│   │   │   ├── tooltip.css
│   │   │   ├── tree.css
│   │   │   ├── validatebox.css
│   │   │   └── window.css
│   │   ├── extEasyUI.js
│   │   ├── extJquery.js
│   │   ├── jquery-1.8.3.js
│   │   ├── lightmvc.js
│   │   ├── 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
│   │   └── style
│   │   ├── images
│   │   │   ├── ext
│   │   │   │   ├── add.png
│   │   │   │   ├── cancel.png
│   │   │   │   ├── company.png
│   │   │   │   ├── del.png
│   │   │   │   ├── dic.png
│   │   │   │   ├── folder.png
│   │   │   │   ├── home.png
│   │   │   │   ├── login.png
│   │   │   │   ├── org.png
│   │   │   │   ├── pwd.png
│   │   │   │   ├── refresh.png
│   │   │   │   ├── resource.png
│   │   │   │   ├── role.png
│   │   │   │   ├── search.png
│   │   │   │   ├── sys.png
│   │   │   │   └── user.png
│   │   │   └── index
│   │   │   ├── ajax-loader.gif
│   │   │   ├── favicon.png
│   │   │   ├── headbg.png
│   │   │   └── logo.png
│   │   └── lightmvc.css
│   └── WEB-INF
│   ├── lib
│   │   ├── antlr-2.7.7.jar
│   │   ├── aopalliance-1.0.jar
│   │   ├── aspectjweaver-1.7.2.jar
│   │   ├── classmate-1.0.0.jar
│   │   ├── commons-fileupload-1.3.jar
│   │   ├── commons-io-2.4.jar
│   │   ├── commons-lang3-3.2.1.jar
│   │   ├── commons-logging-1.1.1.jar
│   │   ├── dom4j-1.6.1.jar
│   │   ├── druid-0.2.20.jar
│   │   ├── ehcache-2.7.0.jar
│   │   ├── fastjson-1.1.31.jar
│   │   ├── hibernate-commons-annotations-4.0.2.Final.jar
│   │   ├── hibernate-core-4.2.2.Final.jar
│   │   ├── hibernate-jpa-2.0-api-1.0.1.Final.jar
│   │   ├── hibernate-validator-5.0.3.Final.jar
│   │   ├── javassist-3.15.0-GA.jar
│   │   ├── jboss-logging-3.1.0.GA.jar
│   │   ├── jboss-transaction-api_1.1_spec-1.0.1.Final.jar
│   │   ├── jstl-1.2.jar
│   │   ├── log4j-1.2.17.jar
│   │   ├── mysql-connector-java-5.1.25.jar
│   │   ├── slf4j-api-1.6.6.jar
│   │   ├── slf4j-log4j12-1.7.5.jar
│   │   ├── spring-aop-3.2.3.RELEASE.jar
│   │   ├── spring-beans-3.2.3.RELEASE.jar
│   │   ├── spring-context-3.2.3.RELEASE.jar
│   │   ├── spring-context-support-3.2.3.RELEASE.jar
│   │   ├── spring-core-3.2.3.RELEASE.jar
│   │   ├── spring-expression-3.2.3.RELEASE.jar
│   │   ├── spring-jdbc-3.2.3.RELEASE.jar
│   │   ├── spring-orm-3.2.3.RELEASE.jar
│   │   ├── spring-test-3.2.3.RELEASE.jar
│   │   ├── spring-tx-3.2.3.RELEASE.jar
│   │   ├── spring-web-3.2.3.RELEASE.jar
│   │   ├── spring-webmvc-3.2.3.RELEASE.jar
│   │   └── validation-api-1.1.0.Final.jar
│   ├── spring-mvc.xml
│   ├── views
│   │   ├── admin
│   │   │   ├── accessAdd.jsp
│   │   │   ├── accessEdit.jsp
│   │   │   ├── access.jsp
│   │   │   ├── roleAdd.jsp
│   │   │   ├── roleEdit.jsp
│   │   │   ├── roleGrant.jsp
│   │   │   ├── role.jsp
│   │   │   ├── userAdd.jsp
│   │   │   ├── userEdit.jsp
│   │   │   ├── userEditPwd.jsp
│   │   │   └── user.jsp
│   │   ├── basic
│   │   │   ├── branchAdd.jsp
│   │   │   ├── branchclassAdd.jsp
│   │   │   ├── branchclassEdit.jsp
│   │   │   ├── branchclass.jsp
│   │   │   ├── branchEdit.jsp
│   │   │   ├── branch.jsp
│   │   │   ├── cusclassAdd.jsp
│   │   │   ├── cusclassEdit.jsp
│   │   │   ├── cusclass.jsp
│   │   │   ├── cusinfoAdd.jsp
│   │   │   ├── cusinfoEdit.jsp
│   │   │   ├── cusinfo.jsp
│   │   │   ├── employeeAdd.jsp
│   │   │   ├── employeeEdit.jsp
│   │   │   ├── employee.jsp
│   │   │   ├── itemAdd.jsp
│   │   │   ├── itembrandAdd.jsp
│   │   │   ├── itembrandEdit.jsp
│   │   │   ├── itembrand.jsp
│   │   │   ├── itemclassAdd.jsp
│   │   │   ├── itemclassEdit.jsp
│   │   │   ├── itemclass.jsp
│   │   │   ├── itemEdit.jsp
│   │   │   ├── item.jsp
│   │   │   ├── itempropertyAdd.jsp
│   │   │   ├── itempropertyEdit.jsp
│   │   │   ├── itemproperty.jsp
│   │   │   ├── paymentAdd.jsp
│   │   │   ├── paymentEdit.jsp
│   │   │   ├── payment.jsp
│   │   │   ├── supclassAdd.jsp
│   │   │   ├── supclassEdit.jsp
│   │   │   ├── supclass.jsp
│   │   │   ├── supinfoAdd.jsp
│   │   │   ├── supinfoEdit.jsp
│   │   │   └── supinfo.jsp
│   │   ├── inc.jsp
│   │   ├── index.jsp
│   │   ├── login.jsp
│   │   └── menu
│   │   ├── basic.jsp
│   │   ├── chain.jsp
│   │   ├── purchase.jsp
│   │   ├── report.jsp
│   │   ├── sale.jsp
│   │   ├── setting.jsp
│   │   ├── stock.jsp
│   │   ├── vip.jsp
│   │   └── wholesale.jsp
│   └── web.xml
├── javax.servlet.jar
├── 接口文档
│   ├── lightmvc整合cxfwebservice
│   │   ├── cxf
│   │   │   ├── client
│   │   │   │   └── Demo.java
│   │   │   ├── Constants.java
│   │   │   ├── impl
│   │   │   │   └── WebServiceDemoImpl.java
│   │   │   └── WebServiceDemoI.java
│   │   ├── lib
│   │   │   ├── asm-3.3.1.jar
│   │   │   ├── cxf-api-2.7.10.jar
│   │   │   ├── cxf-rt-bindings-soap-2.7.10.jar
│   │   │   ├── cxf-rt-bindings-xml-2.7.10.jar
│   │   │   ├── cxf-rt-core-2.7.10.jar
│   │   │   ├── cxf-rt-databinding-jaxb-2.7.10.jar
│   │   │   ├── cxf-rt-frontend-jaxws-2.7.10.jar
│   │   │   ├── cxf-rt-frontend-simple-2.7.10.jar
│   │   │   ├── cxf-rt-transports-http-2.7.10.jar
│   │   │   ├── cxf-rt-ws-addr-2.7.10.jar
│   │   │   ├── cxf-rt-ws-policy-2.7.10.jar
│   │   │   ├── geronimo-javamail_1.4_spec-1.7.1.jar
│   │   │   ├── jaxb-impl-2.1.13.jar
│   │   │   ├── neethi-3.0.3.jar
│   │   │   ├── stax2-api-3.1.1.jar
│   │   │   ├── woodstox-core-asl-4.2.0.jar
│   │   │   ├── wsdl4j-1.6.3.jar
│   │   │   ├── xml-resolver-1.2.jar
│   │   │   └── xmlschema-core-2.1.0.jar
│   │   ├── spring-cxf.xml
│   │   └── web.xml
│   └── readme.txt
├── 数据库
│   └── mysql
│   ├── cleanup-data.sql
│   ├── import-data.sql
│   └── schema.sql
└── 项目安装说明.txt

82 directories, 820 files

标签:

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警