在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 基于SSM的服装设计作品在线展销系统(毕设源码)

基于SSM的服装设计作品在线展销系统(毕设源码)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:59.59M
  • 下载次数:18
  • 浏览次数:215
  • 发布时间:2021-02-17
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
该源码是网上服装设计作品在线展销系统——在线销售管理, Java+SSM+基于MVC模式的网上在线购物系统,,在eclipse中导入即可运行。 里面包含了MySQL数据库文件。即下即用。
【实例截图】
【核心代码】
8fdd1c6e-dc08-46fd-af20-910d68a96935
└── 源码
├── fashionshow.sql
└── maven_show
├── pom.xml
├── src
│   └── main
│   ├── java
│   │   └── com
│   │   └── show
│   │   ├── controller
│   │   │   ├── AdminController.java
│   │   │   ├── ApplyController.java
│   │   │   ├── BrowseController.java
│   │   │   ├── CollectionController.java
│   │   │   ├── DesignerController.java
│   │   │   ├── EnsharineController.java
│   │   │   ├── IndexController.java
│   │   │   ├── MyAuthenticator.java
│   │   │   ├── ProductController.java
│   │   │   ├── ShopCartController.java
│   │   │   ├── StatisticsController.java
│   │   │   ├── StyleController.java
│   │   │   ├── StyleMangeController.java
│   │   │   └── UserController.java
│   │   ├── mapper
│   │   │   ├── AdminMapper.java
│   │   │   ├── AdminMapper.xml
│   │   │   ├── Album.java
│   │   │   ├── AlbumMapper.xml
│   │   │   ├── ApplyMapper.java
│   │   │   ├── ApplyMapper.xml
│   │   │   ├── BrowseMapper.java
│   │   │   ├── BrowseMapper.xml
│   │   │   ├── CategoryMapper.java
│   │   │   ├── CategoryMapper.xml
│   │   │   ├── CollectionMapper.java
│   │   │   ├── CollectionMapper.xml
│   │   │   ├── DesignerMapper.java
│   │   │   ├── DesignerMapper.xml
│   │   │   ├── EnsharineMapper.java
│   │   │   ├── EnsharineMapper.xml
│   │   │   ├── MenuMapper.java
│   │   │   ├── MenuMapper.xml
│   │   │   ├── OrderitemMapper.java
│   │   │   ├── OrderitemMapper.xml
│   │   │   ├── OrderMapper.java
│   │   │   ├── OrderMapper.xml
│   │   │   ├── ProductMapper.java
│   │   │   ├── ProductMapper.xml
│   │   │   ├── ShopcartMapper.java
│   │   │   ├── ShopcartMapper.xml
│   │   │   ├── StyleMapper.java
│   │   │   ├── StyleMapper.xml
│   │   │   ├── TestMapper.java
│   │   │   ├── TestMapper.xml
│   │   │   ├── UserMapper.java
│   │   │   └── UserMapper.xml
│   │   ├── model
│   │   │   ├── AdminExample.java
│   │   │   ├── Admin.java
│   │   │   ├── Album.java
│   │   │   ├── Apply.java
│   │   │   ├── Browse.java
│   │   │   ├── CategoryExample.java
│   │   │   ├── Category.java
│   │   │   ├── Collection.java
│   │   │   ├── DesignerExample.java
│   │   │   ├── Designer.java
│   │   │   ├── Ensharine.java
│   │   │   ├── Menu.java
│   │   │   ├── OrderExample.java
│   │   │   ├── OrderitemExample.java
│   │   │   ├── Orderitem.java
│   │   │   ├── Order.java
│   │   │   ├── ProductExample.java
│   │   │   ├── Product.java
│   │   │   ├── ShopcartExample.java
│   │   │   ├── Shopcart.java
│   │   │   ├── Style.java
│   │   │   ├── Test.java
│   │   │   ├── UserExample.java
│   │   │   └── User.java
│   │   ├── service
│   │   │   ├── AdminService.java
│   │   │   ├── ApplyService.java
│   │   │   ├── BrowseService.java
│   │   │   ├── CategoryService.java
│   │   │   ├── CollectionService.java
│   │   │   ├── DesignerService.java
│   │   │   ├── EnsharineService.java
│   │   │   ├── impl
│   │   │   │   ├── AdminServiceImpl.java
│   │   │   │   ├── ApplyServiceImpl.java
│   │   │   │   ├── BrowseServiceImpl.java
│   │   │   │   ├── CategoryServiceImpl.java
│   │   │   │   ├── CollectionServiceImpl.java
│   │   │   │   ├── DesignerServiceImpl.java
│   │   │   │   ├── EnsharineServiceImpl.java
│   │   │   │   ├── ProductServiceImpl.java
│   │   │   │   ├── ShopcartServiceImpl.java
│   │   │   │   ├── StyleServiceImpl.java
│   │   │   │   ├── TestServiceImpl.java
│   │   │   │   └── UserServiceImpl.java
│   │   │   ├── ProductService.java
│   │   │   ├── ShopcartService.java
│   │   │   ├── StyleService.java
│   │   │   ├── TestService.java
│   │   │   └── UserService.java
│   │   ├── tools
│   │   │   ├── FileUpload.java
│   │   │   └── Page.java
│   │   └── untils
│   │   ├── CookieUtils.java
│   │   ├── HttpClientUtil.java
│   │   ├── ImgUpUtil.java
│   │   ├── JsonUtils.java
│   │   ├── QRcode.java
│   │   └── StringUtil.java
│   ├── resources
│   │   ├── applicationContext-dao.xml
│   │   ├── applicationContext-service.xml
│   │   ├── applicationContext-transaction.xml
│   │   ├── CustomValidationMessages.properties
│   │   ├── db.properties
│   │   ├── log4j.properties
│   │   ├── springmvc.xml
│   │   └── sqlMapConfig.xml
│   └── webapp
│   ├── admin
│   │   ├── admin-index.jsp
│   │   ├── css
│   │   │   ├── admin.css
│   │   │   ├── amazeui.css
│   │   │   ├── amazeui.flat.css
│   │   │   ├── amazeui.flat.min.css
│   │   │   └── amazeui.min.css
│   │   ├── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   ├── fontawesome-webfont.woff
│   │   │   └── fontawesome-webfont.woff2
│   │   ├── images
│   │   │   ├── admin-chrome.png
│   │   │   ├── admin-firefox.png
│   │   │   ├── admin-ie.png
│   │   │   ├── admin-opera.png
│   │   │   ├── adminPage.png
│   │   │   ├── admin-safari.png
│   │   │   ├── app-icon72x72@2x.png
│   │   │   ├── blogPage.png
│   │   │   ├── favicon.png
│   │   │   ├── landingPage.png
│   │   │   ├── landing.png
│   │   │   ├── loginPage.png
│   │   │   ├── sidebarPage.png
│   │   │   └── startup-640x1096.png
│   │   └── js
│   │   ├── amazeui.ie8polyfill.js
│   │   ├── amazeui.ie8polyfill.min.js
│   │   ├── amazeui.js
│   │   ├── amazeui.min.js
│   │   ├── amazeui.widgets.helper.js
│   │   ├── amazeui.widgets.helper.min.js
│   │   ├── app.js
│   │   ├── handlebars.min.js
│   │   └── jquery.min.js
│   ├── designer
│   │   ├── add_collection.jsp
│   │   ├── collection.jsp
│   │   ├── css
│   │   │   ├── bootstrap.css
│   │   │   ├── collection.css
│   │   │   ├── common.css
│   │   │   ├── ehr_div.css
│   │   │   ├── index.css
│   │   │   ├── jquery.css
│   │   │   ├── login.css
│   │   │   ├── profile.css
│   │   │   ├── reset.css
│   │   │   ├── signup.css
│   │   │   ├── space.css
│   │   │   ├── style.css
│   │   │   ├── upload.css
│   │   │   └── upload_image.css
│   │   ├── image
│   │   │   ├── avatar
│   │   │   │   ├── 01.jpg
│   │   │   │   ├── 02.jpg
│   │   │   │   ├── 03.jpg
│   │   │   │   ├── 04.jpg
│   │   │   │   ├── 05.jpg
│   │   │   │   ├── 06.jpg
│   │   │   │   ├── 07.jpg
│   │   │   │   ├── 08.jpg
│   │   │   │   └── 09.jpg
│   │   │   ├── background
│   │   │   │   ├── 01.jpg
│   │   │   │   ├── 02.png
│   │   │   │   └── 05.jpg
│   │   │   ├── icon
│   │   │   │   ├── pic_add_qt.gif
│   │   │   │   └── scbj.png
│   │   │   └── img
│   │   │   ├── 01.jpg
│   │   │   ├── a11.png
│   │   │   ├── a7.png
│   │   │   ├── album_add.gif
│   │   │   ├── close.gif
│   │   │   ├── cover0.jpg
│   │   │   ├── ico_img.gif
│   │   │   ├── ico_tj.gif
│   │   │   ├── l_dhb.gif
│   │   │   ├── l_nrb.jpg
│   │   │   ├── loading.gif
│   │   │   └── r_dh_tb.gif
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── collection.js
│   │   │   ├── common.js
│   │   │   ├── dcwen.js
│   │   │   ├── dvwnd.js
│   │   │   ├── imgUp.js
│   │   │   ├── index.js
│   │   │   ├── jquery
│   │   │   │   ├── jquery-1.10.2.min.js
│   │   │   │   ├── jquery.jcrop.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   └── YuxiSlider.jQuery.min.js
│   │   │   ├── jquery-1.8.3.min.js
│   │   │   ├── json.js
│   │   │   ├── login.js
│   │   │   ├── profile.js
│   │   │   ├── space.js
│   │   │   ├── tip.js
│   │   │   └── upload.js
│   │   ├── login.jsp
│   │   ├── profile.jsp
│   │   ├── signup.jsp
│   │   ├── space.jsp
│   │   ├── uploadCopy.jsp
│   │   └── upload.jsp
│   ├── index.jsp
│   ├── message.jsp
│   ├── resources
│   │   ├── css
│   │   │   ├── admin
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── cart.css
│   │   │   │   ├── chengyiDetil.css
│   │   │   │   ├── dataTables.bootstrap.min.css
│   │   │   │   ├── default.css
│   │   │   │   ├── jquery.dialog.css
│   │   │   │   ├── style.css
│   │   │   │   └── style_grey.css
│   │   │   ├── bootstrap.css
│   │   │   ├── flexslider.css
│   │   │   ├── header
│   │   │   │   ├── h1.css
│   │   │   │   ├── h2.css
│   │   │   │   └── h3.css
│   │   │   ├── jquery.lightbox.css
│   │   │   ├── megamenu.css
│   │   │   ├── page.css
│   │   │   ├── register.css
│   │   │   ├── sty.css
│   │   │   ├── style1.css
│   │   │   ├── style.css
│   │   │   └── zhuce.css
│   │   ├── easyui
│   │   │   ├── easyui.css
│   │   │   ├── easyui-lang-zh_CN.js
│   │   │   ├── icon.css
│   │   │   ├── jquery.easyui.min.js
│   │   │   └── jquery.min.js
│   │   ├── fonts
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   ├── glyphicons-halflings-regular.woff2
│   │   │   ├── OpenSans-Regular.ttf
│   │   │   └── PoiretOne-Regular.ttf
│   │   ├── images
│   │   │   ├── admin
│   │   │   │   ├── 0.png
│   │   │   │   ├── 14684852581458638.png
│   │   │   │   ├── bg_grey.png
│   │   │   │   ├── bg_login.jpg
│   │   │   │   ├── bgx.png
│   │   │   │   ├── Female.gif
│   │   │   │   ├── frame.png
│   │   │   │   ├── header_bg.png
│   │   │   │   ├── input_bg.png
│   │   │   │   ├── loading.gif
│   │   │   │   ├── logo.png
│   │   │   │   ├── Male.gif
│   │   │   │   ├── menu.png
│   │   │   │   ├── online.png
│   │   │   │   ├── reload.png
│   │   │   │   ├── test
│   │   │   │   │   ├── 2549_thumb_P_1466498306001.jpg
│   │   │   │   │   └── kong.png
│   │   │   │   ├── title.png
│   │   │   │   └── user_logout.png
│   │   │   ├── bai
│   │   │   │   ├── bai13.jpg
│   │   │   │   ├── bai14.jpg
│   │   │   │   ├── bai1.jpg
│   │   │   │   ├── bai4.jpg
│   │   │   │   ├── bai5.jpg
│   │   │   │   └── bai9.jpg
│   │   │   ├── banner1.jpg
│   │   │   ├── banner2.jpg
│   │   │   ├── banner3.jpg
│   │   │   ├── c1.jpg
│   │   │   ├── c2.jpg
│   │   │   ├── close.png
│   │   │   ├── f1.jpg
│   │   │   ├── f2.jpg
│   │   │   ├── f3.jpg
│   │   │   ├── f4.jpg
│   │   │   ├── hong
│   │   │   │   ├── hong10.jpg
│   │   │   │   ├── hong13.jpg
│   │   │   │   ├── hong15.jpg
│   │   │   │   ├── hong2.jpg
│   │   │   │   ├── hong3.jpg
│   │   │   │   └── hong9.jpg
│   │   │   ├── list-arrow.png
│   │   │   ├── login.jpg
│   │   │   ├── move-top.png
│   │   │   ├── nav.png
│   │   │   ├── next.png
│   │   │   ├── p
│   │   │   │   ├── bai1.jpg
│   │   │   │   └── p10.jpg
│   │   │   ├── p10.jpg
│   │   │   ├── p11.jpg
│   │   │   ├── p12.jpg
│   │   │   ├── p13.jpg
│   │   │   ├── p14.jpg
│   │   │   ├── p15.jpg
│   │   │   ├── p16.jpg
│   │   │   ├── p17.jpg
│   │   │   ├── p18.jpg
│   │   │   ├── p1.jpg
│   │   │   ├── p2.jpg
│   │   │   ├── p3.jpg
│   │   │   ├── p4.jpg
│   │   │   ├── p5.jpg
│   │   │   ├── p6.jpg
│   │   │   ├── p7.jpg
│   │   │   ├── p8.jpg
│   │   │   ├── p9.jpg
│   │   │   ├── previous.png
│   │   │   ├── t1.jpg
│   │   │   ├── t2.jpg
│   │   │   ├── t3.jpg
│   │   │   └── t4.jpg
│   │   ├── js
│   │   │   ├── admin
│   │   │   │   ├── cart.cookie_new.js
│   │   │   │   ├── common.js
│   │   │   │   ├── compare.js
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   ├── dataTables.bootstrap.min.css
│   │   │   │   │   ├── default.css
│   │   │   │   │   ├── jquery.dialog.css
│   │   │   │   │   ├── style.css
│   │   │   │   │   └── style_grey.css
│   │   │   │   ├── dataTables.bootstrap.min.js
│   │   │   │   ├── easyui
│   │   │   │   │   ├── easyloader.js
│   │   │   │   │   ├── ext
│   │   │   │   │   │   ├── jquery.cookie.js
│   │   │   │   │   │   ├── jquery.portal.js
│   │   │   │   │   │   └── portal.css
│   │   │   │   │   ├── jquery.easyui.min.js
│   │   │   │   │   ├── locale
│   │   │   │   │   │   ├── easyui-lang-af.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-pt_BR.js
│   │   │   │   │   │   ├── easyui-lang-ru.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.combotree.js
│   │   │   │   │   │   ├── jquery.datagrid.js
│   │   │   │   │   │   ├── jquery.datebox.js
│   │   │   │   │   │   ├── jquery.datetimebox.js
│   │   │   │   │   │   ├── jquery.dialog.js
│   │   │   │   │   │   ├── jquery.draggable.js
│   │   │   │   │   │   ├── jquery.droppable.js
│   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   ├── jquery.layout.js
│   │   │   │   │   │   ├── jquery.linkbutton.js
│   │   │   │   │   │   ├── jquery.menubutton.js
│   │   │   │   │   │   ├── jquery.menu.js
│   │   │   │   │   │   ├── jquery.messager.js
│   │   │   │   │   │   ├── jquery.numberbox.js
│   │   │   │   │   │   ├── jquery.numberspinner.js
│   │   │   │   │   │   ├── jquery.pagination.js
│   │   │   │   │   │   ├── jquery.panel.js
│   │   │   │   │   │   ├── jquery.parser.js
│   │   │   │   │   │   ├── jquery.progressbar.js
│   │   │   │   │   │   ├── jquery.propertygrid.js
│   │   │   │   │   │   ├── jquery.resizable.js
│   │   │   │   │   │   ├── jquery.searchbox.js
│   │   │   │   │   │   ├── jquery.slider.js
│   │   │   │   │   │   ├── jquery.spinner.js
│   │   │   │   │   │   ├── jquery.splitbutton.js
│   │   │   │   │   │   ├── jquery.tabs.js
│   │   │   │   │   │   ├── jquery.timespinner.js
│   │   │   │   │   │   ├── jquery.treegrid.js
│   │   │   │   │   │   ├── jquery.tree.js
│   │   │   │   │   │   ├── jquery.validatebox.js
│   │   │   │   │   │   └── jquery.window.js
│   │   │   │   │   └── themes
│   │   │   │   │   ├── black
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.css
│   │   │   │   │   │   ├── datagrid.css
│   │   │   │   │   │   ├── datebox.css
│   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   ├── easyui.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_arrows.png
│   │   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   │   ├── layout.css
│   │   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.css
│   │   │   │   │   │   ├── messager.css
│   │   │   │   │   │   ├── pagination.css
│   │   │   │   │   │   ├── panel.css
│   │   │   │   │   │   ├── progressbar.css
│   │   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   │   ├── searchbox.css
│   │   │   │   │   │   ├── slider.css
│   │   │   │   │   │   ├── spinner.css
│   │   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   │   ├── tabs.css
│   │   │   │   │   │   ├── tree.css
│   │   │   │   │   │   ├── validatebox.css
│   │   │   │   │   │   └── window.css
│   │   │   │   │   ├── bootstrap
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.css
│   │   │   │   │   │   ├── datagrid.css
│   │   │   │   │   │   ├── datebox.css
│   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   ├── easyui.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_arrows.png
│   │   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   │   ├── layout.css
│   │   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.css
│   │   │   │   │   │   ├── messager.css
│   │   │   │   │   │   ├── pagination.css
│   │   │   │   │   │   ├── panel.css
│   │   │   │   │   │   ├── progressbar.css
│   │   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   │   ├── searchbox.css
│   │   │   │   │   │   ├── slider.css
│   │   │   │   │   │   ├── spinner.css
│   │   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   │   ├── tabs.css
│   │   │   │   │   │   ├── tree.css
│   │   │   │   │   │   ├── validatebox.css
│   │   │   │   │   │   └── window.css
│   │   │   │   │   ├── default
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.css
│   │   │   │   │   │   ├── datagrid.css
│   │   │   │   │   │   ├── datebox.css
│   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   ├── easyui.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_arrows.png
│   │   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   │   ├── layout.css
│   │   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.css
│   │   │   │   │   │   ├── messager.css
│   │   │   │   │   │   ├── pagination.css
│   │   │   │   │   │   ├── panel.css
│   │   │   │   │   │   ├── progressbar.css
│   │   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   │   ├── searchbox.css
│   │   │   │   │   │   ├── slider.css
│   │   │   │   │   │   ├── spinner.css
│   │   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   │   ├── tabs.css
│   │   │   │   │   │   ├── tree.css
│   │   │   │   │   │   ├── validatebox.css
│   │   │   │   │   │   └── window.css
│   │   │   │   │   ├── gray
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.css
│   │   │   │   │   │   ├── datagrid.css
│   │   │   │   │   │   ├── datebox.css
│   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   ├── easyui.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_arrows.png
│   │   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   │   ├── layout.css
│   │   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.css
│   │   │   │   │   │   ├── messager.css
│   │   │   │   │   │   ├── pagination.css
│   │   │   │   │   │   ├── panel.css
│   │   │   │   │   │   ├── progressbar.css
│   │   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   │   ├── searchbox.css
│   │   │   │   │   │   ├── slider.css
│   │   │   │   │   │   ├── spinner.css
│   │   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   │   ├── tabs.css
│   │   │   │   │   │   ├── tree.css
│   │   │   │   │   │   ├── validatebox.css
│   │   │   │   │   │   └── window.css
│   │   │   │   │   ├── icon.css
│   │   │   │   │   ├── icons
│   │   │   │   │   │   ├── back.png
│   │   │   │   │   │   ├── blank.gif
│   │   │   │   │   │   ├── cancel.png
│   │   │   │   │   │   ├── cut.png
│   │   │   │   │   │   ├── edit_add.png
│   │   │   │   │   │   ├── edit_remove.png
│   │   │   │   │   │   ├── filesave.png
│   │   │   │   │   │   ├── help.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
│   │   │   │   │   ├── 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_arrows.png
│   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   ├── layout.css
│   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   ├── menubutton.css
│   │   │   │   │   ├── menu.css
│   │   │   │   │   ├── messager.css
│   │   │   │   │   ├── pagination.css
│   │   │   │   │   ├── panel.css
│   │   │   │   │   ├── progressbar.css
│   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   ├── searchbox.css
│   │   │   │   │   ├── slider.css
│   │   │   │   │   ├── spinner.css
│   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   ├── tabs.css
│   │   │   │   │   ├── tree.css
│   │   │   │   │   ├── validatebox.css
│   │   │   │   │   └── window.css
│   │   │   │   ├── index.js
│   │   │   │   ├── jquery-1.8.3.js
│   │   │   │   ├── jquery-1.9.1.min.js
│   │   │   │   ├── jquery-2.1.1.min.js
│   │   │   │   ├── jquery.dataTables.min.js
│   │   │   │   ├── jquery.dialog.js
│   │   │   │   ├── utils.js
│   │   │   │   └── ztree
│   │   │   │   ├── img
│   │   │   │   │   ├── diy
│   │   │   │   │   │   ├── 1_close.png
│   │   │   │   │   │   ├── 1_open.png
│   │   │   │   │   │   ├── 2.png
│   │   │   │   │   │   ├── 3.png
│   │   │   │   │   │   ├── 4.png
│   │   │   │   │   │   ├── 5.png
│   │   │   │   │   │   ├── 6.png
│   │   │   │   │   │   ├── 7.png
│   │   │   │   │   │   ├── 8.png
│   │   │   │   │   │   └── 9.png
│   │   │   │   │   ├── line_conn.gif
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── zTreeStandard.gif
│   │   │   │   │   └── zTreeStandard.png
│   │   │   │   ├── jquery.ztree.all-3.5.js
│   │   │   │   └── zTreeStyle.css
│   │   │   ├── bootstrap.js
│   │   │   ├── easing.js
│   │   │   ├── imagezoom.js
│   │   │   ├── jquery-1.11.1.min.js
│   │   │   ├── jquery-1.8.3.js
│   │   │   ├── jquery-1.8.3.min.js
│   │   │   ├── jquery-2.1.1.min.js
│   │   │   ├── jquery.flexisel.js
│   │   │   ├── jquery.flexslider.js
│   │   │   ├── jquery.jscrollpane.min.js
│   │   │   ├── jquery.lightbox.js
│   │   │   ├── megamenu.js
│   │   │   ├── menu_jquery.js
│   │   │   ├── move-top.js
│   │   │   ├── nlogin.js
│   │   │   ├── scripts.js
│   │   │   ├── seed-min.js
│   │   │   └── simpleCart.min.js
│   │   ├── login
│   │   │   ├── login.css
│   │   │   ├── nc.css
│   │   │   └── seed-min.js
│   │   ├── shopCart
│   │   │   ├── easy-responsive-tabs.css
│   │   │   ├── easyResponsiveTabs.js
│   │   │   ├── global.css
│   │   │   ├── jquery-1.7.2.min.js
│   │   │   ├── jquery.gallery.js
│   │   │   ├── jquery.min.js
│   │   │   ├── jquery-slider.js
│   │   │   ├── modernizr.custom.53451.js
│   │   │   ├── slides.min.jquery.js
│   │   │   └── style.css
│   │   ├── shopCart2
│   │   │   ├── 14871272268992899.jpg
│   │   │   ├── Base.js
│   │   │   ├── cart.css
│   │   │   ├── fdj.js
│   │   │   ├── md5.js
│   │   │   ├── pay_address_ceng.css
│   │   │   ├── public.css
│   │   │   └── style_userinfo.css
│   │   └── talk
│   │   └── c-cxh-only0218.js
│   ├── show
│   │   ├── about.jsp
│   │   ├── admin
│   │   │   ├── adminindex.jsp
│   │   │   ├── admininfo.jsp
│   │   │   ├── adminlist.jsp
│   │   │   ├── categoryindex.jsp
│   │   │   ├── categorylist.jsp
│   │   │   ├── editAdmin.jsp
│   │   │   ├── editUser.jsp
│   │   │   ├── home.jsp
│   │   │   ├── index.jsp
│   │   │   ├── login.jsp
│   │   │   ├── productadd.jsp
│   │   │   ├── productindex.jsp
│   │   │   ├── productinfo.jsp
│   │   │   ├── productlist.jsp
│   │   │   ├── userindex.jsp
│   │   │   ├── userinfo.jsp
│   │   │   └── userlist.jsp
│   │   ├── contact.jsp
│   │   ├── designer
│   │   │   ├── designeradd.jsp
│   │   │   ├── designerindex.jsp
│   │   │   ├── designerinfo.jsp
│   │   │   ├── designerlist.jsp
│   │   │   └── editDesigner.jsp
│   │   ├── designers.jsp
│   │   ├── error.jsp
│   │   ├── gallery.jsp
│   │   ├── galleryMore.jsp
│   │   ├── header.jsp
│   │   ├── image
│   │   │   └── imagepath
│   │   │   ├── bai13.jpg
│   │   │   ├── bai14.jpg
│   │   │   ├── bai1.jpg
│   │   │   ├── bai4.jpg
│   │   │   ├── bai5.jpg
│   │   │   ├── bai7.jpg
│   │   │   ├── bai.jpg
│   │   │   └── designer.jpg
│   │   ├── index.jsp
│   │   ├── indexmore.jsp
│   │   ├── jsp
│   │   │   ├── error2.jsp
│   │   │   ├── error.jsp
│   │   │   └── success.jsp
│   │   ├── login.jsp
│   │   ├── NewFile.jsp
│   │   ├── portal
│   │   │   ├── bug.jsp
│   │   │   ├── daiban.jsp
│   │   │   ├── gonggao.jsp
│   │   │   └── yujing.jsp
│   │   ├── profileJieSuan.jsp
│   │   ├── profile.jsp
│   │   ├── register.jsp
│   │   ├── shopCart
│   │   │   ├── shopCart2.jsp
│   │   │   ├── shopCart.jsp
│   │   │   └── shopCartNull.jsp
│   │   ├── test.jsp
│   │   └── typo.jsp
│   ├── style
│   │   ├── admin.jsp
│   │   ├── apply.jsp
│   │   ├── css
│   │   │   ├── admin.css
│   │   │   ├── amazeui.min.css
│   │   │   ├── apply.css
│   │   │   ├── common.css
│   │   │   ├── message.css
│   │   │   ├── myapply.css
│   │   │   └── style.css
│   │   ├── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   ├── fontawesome-webfont.woff
│   │   │   └── fontawesome-webfont.woff2
│   │   ├── image
│   │   │   ├── admin-chrome.png
│   │   │   ├── admin-firefox.png
│   │   │   ├── admin-ie.png
│   │   │   ├── admin-opera.png
│   │   │   ├── adminPage.png
│   │   │   ├── admin-safari.png
│   │   │   ├── p14.jpg
│   │   │   ├── p15.jpg
│   │   │   ├── p1.jpg
│   │   │   ├── p2.jpg
│   │   │   ├── p4.jpg
│   │   │   ├── style1.jpg
│   │   │   ├── style2.jpg
│   │   │   ├── style3.jpg
│   │   │   ├── style4.jpg
│   │   │   └── style5.jpg
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── browser.js
│   │   │   ├── chart.js
│   │   │   ├── index.js
│   │   │   ├── manage.js
│   │   │   ├── message.js
│   │   │   ├── myapply.js
│   │   │   └── user-chart1.js
│   │   ├── login_message.jsp
│   │   ├── message.jsp
│   │   ├── myApply.jsp
│   │   ├── order_chart.jsp
│   │   ├── page_chart.jsp
│   │   ├── search.jsp
│   │   ├── styleManage.jsp
│   │   ├── styleManageList.jsp
│   │   ├── toBeDesigner.jsp
│   │   └── user_chart.jsp
│   ├── uploads
│   │   ├── 20160730203518967307.jpg
│   │   ├── bai1.jpg
│   │   └── default.jpg
│   └── WEB-INF
│   ├── lib
│   │   ├── commons-beanutils-1.8.3.jar
│   │   ├── commons-collections-3.2.1.jar
│   │   ├── commons-lang-2.6.jar
│   │   ├── commons-logging-1.1.1.jar
│   │   ├── dom4j-1.6.1.jar
│   │   ├── ezmorph-1.0.6.jar
│   │   ├── jdom-1.1.jar
│   │   ├── json-lib-2.1.jar
│   │   ├── json-lib-2.2.2-jdk15.jar
│   │   └── QRCode.jar
│   └── web.xml
└── target
├── classes
│   ├── applicationContext-dao.xml
│   ├── applicationContext-service.xml
│   ├── applicationContext-transaction.xml
│   ├── com
│   │   └── show
│   │   ├── controller
│   │   │   ├── AdminController.class
│   │   │   ├── ApplyController.class
│   │   │   ├── BrowseController.class
│   │   │   ├── CollectionController.class
│   │   │   ├── DesignerController.class
│   │   │   ├── EnsharineController.class
│   │   │   ├── IndexController.class
│   │   │   ├── MyAuthenticator.class
│   │   │   ├── ProductController.class
│   │   │   ├── ShopCartController.class
│   │   │   ├── StatisticsController.class
│   │   │   ├── StyleController.class
│   │   │   ├── StyleMangeController.class
│   │   │   └── UserController.class
│   │   ├── mapper
│   │   │   ├── AdminMapper.class
│   │   │   ├── AdminMapper.xml
│   │   │   ├── Album.class
│   │   │   ├── AlbumMapper.xml
│   │   │   ├── ApplyMapper.class
│   │   │   ├── ApplyMapper.xml
│   │   │   ├── BrowseMapper.class
│   │   │   ├── BrowseMapper.xml
│   │   │   ├── CategoryMapper.class
│   │   │   ├── CategoryMapper.xml
│   │   │   ├── CollectionMapper.class
│   │   │   ├── CollectionMapper.xml
│   │   │   ├── DesignerMapper.class
│   │   │   ├── DesignerMapper.xml
│   │   │   ├── EnsharineMapper.class
│   │   │   ├── EnsharineMapper.xml
│   │   │   ├── MenuMapper.class
│   │   │   ├── MenuMapper.xml
│   │   │   ├── OrderitemMapper.class
│   │   │   ├── OrderitemMapper.xml
│   │   │   ├── OrderMapper.class
│   │   │   ├── OrderMapper.xml
│   │   │   ├── ProductMapper.class
│   │   │   ├── ProductMapper.xml
│   │   │   ├── ShopcartMapper.class
│   │   │   ├── ShopcartMapper.xml
│   │   │   ├── StyleMapper.class
│   │   │   ├── StyleMapper.xml
│   │   │   ├── TestMapper.class
│   │   │   ├── TestMapper.xml
│   │   │   ├── UserMapper.class
│   │   │   └── UserMapper.xml
│   │   ├── model
│   │   │   ├── Admin.class
│   │   │   ├── AdminExample$Criteria.class
│   │   │   ├── AdminExample$Criterion.class
│   │   │   ├── AdminExample$GeneratedCriteria.class
│   │   │   ├── AdminExample.class
│   │   │   ├── Album.class
│   │   │   ├── Apply.class
│   │   │   ├── Browse.class
│   │   │   ├── Category.class
│   │   │   ├── CategoryExample$Criteria.class
│   │   │   ├── CategoryExample$Criterion.class
│   │   │   ├── CategoryExample$GeneratedCriteria.class
│   │   │   ├── CategoryExample.class
│   │   │   ├── Collection.class
│   │   │   ├── Designer.class
│   │   │   ├── DesignerExample$Criteria.class
│   │   │   ├── DesignerExample$Criterion.class
│   │   │   ├── DesignerExample$GeneratedCriteria.class
│   │   │   ├── DesignerExample.class
│   │   │   ├── Ensharine.class
│   │   │   ├── Menu.class
│   │   │   ├── Order.class
│   │   │   ├── OrderExample$Criteria.class
│   │   │   ├── OrderExample$Criterion.class
│   │   │   ├── OrderExample$GeneratedCriteria.class
│   │   │   ├── OrderExample.class
│   │   │   ├── Orderitem.class
│   │   │   ├── OrderitemExample$Criteria.class
│   │   │   ├── OrderitemExample$Criterion.class
│   │   │   ├── OrderitemExample$GeneratedCriteria.class
│   │   │   ├── OrderitemExample.class
│   │   │   ├── Product.class
│   │   │   ├── ProductExample$Criteria.class
│   │   │   ├── ProductExample$Criterion.class
│   │   │   ├── ProductExample$GeneratedCriteria.class
│   │   │   ├── ProductExample.class
│   │   │   ├── Shopcart.class
│   │   │   ├── ShopcartExample$Criteria.class
│   │   │   ├── ShopcartExample$Criterion.class
│   │   │   ├── ShopcartExample$GeneratedCriteria.class
│   │   │   ├── ShopcartExample.class
│   │   │   ├── Style.class
│   │   │   ├── Test.class
│   │   │   ├── User.class
│   │   │   ├── UserExample$Criteria.class
│   │   │   ├── UserExample$Criterion.class
│   │   │   ├── UserExample$GeneratedCriteria.class
│   │   │   └── UserExample.class
│   │   ├── service
│   │   │   ├── AdminService.class
│   │   │   ├── ApplyService.class
│   │   │   ├── BrowseService.class
│   │   │   ├── CategoryService.class
│   │   │   ├── CollectionService.class
│   │   │   ├── DesignerService.class
│   │   │   ├── EnsharineService.class
│   │   │   ├── impl
│   │   │   │   ├── AdminServiceImpl.class
│   │   │   │   ├── ApplyServiceImpl.class
│   │   │   │   ├── BrowseServiceImpl.class
│   │   │   │   ├── CategoryServiceImpl.class
│   │   │   │   ├── CollectionServiceImpl.class
│   │   │   │   ├── DesignerServiceImpl.class
│   │   │   │   ├── EnsharineServiceImpl.class
│   │   │   │   ├── ProductServiceImpl.class
│   │   │   │   ├── ShopcartServiceImpl.class
│   │   │   │   ├── StyleServiceImpl.class
│   │   │   │   ├── TestServiceImpl.class
│   │   │   │   └── UserServiceImpl.class
│   │   │   ├── ProductService.class
│   │   │   ├── ShopcartService.class
│   │   │   ├── StyleService.class
│   │   │   ├── TestService.class
│   │   │   └── UserService.class
│   │   ├── tools
│   │   │   ├── FileUpload.class
│   │   │   └── Page.class
│   │   └── untils
│   │   ├── CookieUtils.class
│   │   ├── HttpClientUtil.class
│   │   ├── ImgUpUtil.class
│   │   ├── JsonUtils.class
│   │   ├── QRcode.class
│   │   └── StringUtil.class
│   ├── CustomValidationMessages.properties
│   ├── db.properties
│   ├── log4j.properties
│   ├── springmvc.xml
│   └── sqlMapConfig.xml
├── m2e-wtp
│   └── web-resources
│   └── META-INF
│   ├── MANIFEST.MF
│   └── maven
│   └── maven_show
│   └── maven_show
│   ├── pom.properties
│   └── pom.xml
├── maven-archiver
│   └── pom.properties
├── maven_show-0.0.1-SNAPSHOT
│   ├── admin
│   │   ├── admin-index.jsp
│   │   ├── css
│   │   │   ├── admin.css
│   │   │   ├── amazeui.css
│   │   │   ├── amazeui.flat.css
│   │   │   ├── amazeui.flat.min.css
│   │   │   └── amazeui.min.css
│   │   ├── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   ├── fontawesome-webfont.woff
│   │   │   └── fontawesome-webfont.woff2
│   │   ├── images
│   │   │   ├── admin-chrome.png
│   │   │   ├── admin-firefox.png
│   │   │   ├── admin-ie.png
│   │   │   ├── admin-opera.png
│   │   │   ├── adminPage.png
│   │   │   ├── admin-safari.png
│   │   │   ├── app-icon72x72@2x.png
│   │   │   ├── blogPage.png
│   │   │   ├── favicon.png
│   │   │   ├── landingPage.png
│   │   │   ├── landing.png
│   │   │   ├── loginPage.png
│   │   │   ├── sidebarPage.png
│   │   │   └── startup-640x1096.png
│   │   └── js
│   │   ├── amazeui.ie8polyfill.js
│   │   ├── amazeui.ie8polyfill.min.js
│   │   ├── amazeui.js
│   │   ├── amazeui.min.js
│   │   ├── amazeui.widgets.helper.js
│   │   ├── amazeui.widgets.helper.min.js
│   │   ├── app.js
│   │   ├── handlebars.min.js
│   │   └── jquery.min.js
│   ├── designer
│   │   ├── css
│   │   │   ├── bootstrap.css
│   │   │   ├── common.css
│   │   │   ├── index.css
│   │   │   ├── login.css
│   │   │   ├── profile.css
│   │   │   ├── reset.css
│   │   │   ├── signup.css
│   │   │   ├── space.css
│   │   │   └── style.css
│   │   ├── image
│   │   │   ├── avatar
│   │   │   │   ├── 01.jpg
│   │   │   │   ├── 02.jpg
│   │   │   │   ├── 03.jpg
│   │   │   │   ├── 04.jpg
│   │   │   │   ├── 05.jpg
│   │   │   │   ├── 06.jpg
│   │   │   │   ├── 07.jpg
│   │   │   │   ├── 08.jpg
│   │   │   │   └── 09.jpg
│   │   │   └── background
│   │   │   ├── 01.jpg
│   │   │   ├── 02.png
│   │   │   └── 05.jpg
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── common.js
│   │   │   ├── index.js
│   │   │   ├── jquery
│   │   │   │   ├── jquery-1.10.2.min.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   └── YuxiSlider.jQuery.min.js
│   │   │   ├── login.js
│   │   │   ├── profile.js
│   │   │   └── space.js
│   │   ├── login.jsp
│   │   ├── profile.jsp
│   │   ├── signup.jsp
│   │   └── space.jsp
│   ├── index.jsp
│   ├── message.jsp
│   ├── resources
│   │   ├── css
│   │   │   ├── admin
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── chengyiDetil.css
│   │   │   │   ├── dataTables.bootstrap.min.css
│   │   │   │   ├── default.css
│   │   │   │   ├── jquery.dialog.css
│   │   │   │   ├── style.css
│   │   │   │   └── style_grey.css
│   │   │   ├── bootstrap.css
│   │   │   ├── flexslider.css
│   │   │   ├── header
│   │   │   │   ├── h1.css
│   │   │   │   ├── h2.css
│   │   │   │   └── h3.css
│   │   │   ├── jquery.lightbox.css
│   │   │   ├── megamenu.css
│   │   │   ├── page.css
│   │   │   ├── register.css
│   │   │   ├── sty.css
│   │   │   ├── style1.css
│   │   │   ├── style.css
│   │   │   └── zhuce.css
│   │   ├── easyui
│   │   │   ├── easyui.css
│   │   │   ├── easyui-lang-zh_CN.js
│   │   │   ├── icon.css
│   │   │   ├── jquery.easyui.min.js
│   │   │   └── jquery.min.js
│   │   ├── fonts
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   ├── glyphicons-halflings-regular.woff2
│   │   │   ├── OpenSans-Regular.ttf
│   │   │   └── PoiretOne-Regular.ttf
│   │   ├── images
│   │   │   ├── admin
│   │   │   │   ├── 0.png
│   │   │   │   ├── bg_grey.png
│   │   │   │   ├── bg_login.jpg
│   │   │   │   ├── bgx.png
│   │   │   │   ├── frame.png
│   │   │   │   ├── header_bg.png
│   │   │   │   ├── input_bg.png
│   │   │   │   ├── loading.gif
│   │   │   │   ├── logo.png
│   │   │   │   ├── menu.png
│   │   │   │   ├── online.png
│   │   │   │   ├── reload.png
│   │   │   │   ├── test
│   │   │   │   │   ├── 2549_thumb_P_1466498306001.jpg
│   │   │   │   │   └── kong.png
│   │   │   │   ├── title.png
│   │   │   │   └── user_logout.png
│   │   │   ├── banner1.jpg
│   │   │   ├── banner2.jpg
│   │   │   ├── banner3.jpg
│   │   │   ├── c1.jpg
│   │   │   ├── c2.jpg
│   │   │   ├── close.png
│   │   │   ├── f1.jpg
│   │   │   ├── f2.jpg
│   │   │   ├── f3.jpg
│   │   │   ├── f4.jpg
│   │   │   ├── hong
│   │   │   │   ├── hong10.jpg
│   │   │   │   ├── hong13.jpg
│   │   │   │   ├── hong15.jpg
│   │   │   │   ├── hong2.jpg
│   │   │   │   ├── hong3.jpg
│   │   │   │   └── hong9.jpg
│   │   │   ├── list-arrow.png
│   │   │   ├── login.jpg
│   │   │   ├── move-top.png
│   │   │   ├── nav.png
│   │   │   ├── next.png
│   │   │   ├── p
│   │   │   │   ├── bai1.jpg
│   │   │   │   └── p10.jpg
│   │   │   ├── p10.jpg
│   │   │   ├── p11.jpg
│   │   │   ├── p12.jpg
│   │   │   ├── p13.jpg
│   │   │   ├── p14.jpg
│   │   │   ├── p15.jpg
│   │   │   ├── p16.jpg
│   │   │   ├── p17.jpg
│   │   │   ├── p18.jpg
│   │   │   ├── p1.jpg
│   │   │   ├── p2.jpg
│   │   │   ├── p3.jpg
│   │   │   ├── p4.jpg
│   │   │   ├── p5.jpg
│   │   │   ├── p6.jpg
│   │   │   ├── p7.jpg
│   │   │   ├── p8.jpg
│   │   │   ├── p9.jpg
│   │   │   ├── previous.png
│   │   │   ├── t1.jpg
│   │   │   ├── t2.jpg
│   │   │   ├── t3.jpg
│   │   │   └── t4.jpg
│   │   ├── js
│   │   │   ├── admin
│   │   │   │   ├── common.js
│   │   │   │   ├── compare.js
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   ├── dataTables.bootstrap.min.css
│   │   │   │   │   ├── default.css
│   │   │   │   │   ├── jquery.dialog.css
│   │   │   │   │   ├── style.css
│   │   │   │   │   └── style_grey.css
│   │   │   │   ├── dataTables.bootstrap.min.js
│   │   │   │   ├── easyui
│   │   │   │   │   ├── easyloader.js
│   │   │   │   │   ├── ext
│   │   │   │   │   │   ├── jquery.cookie.js
│   │   │   │   │   │   ├── jquery.portal.js
│   │   │   │   │   │   └── portal.css
│   │   │   │   │   ├── jquery.easyui.min.js
│   │   │   │   │   ├── locale
│   │   │   │   │   │   ├── easyui-lang-af.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-pt_BR.js
│   │   │   │   │   │   ├── easyui-lang-ru.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.combotree.js
│   │   │   │   │   │   ├── jquery.datagrid.js
│   │   │   │   │   │   ├── jquery.datebox.js
│   │   │   │   │   │   ├── jquery.datetimebox.js
│   │   │   │   │   │   ├── jquery.dialog.js
│   │   │   │   │   │   ├── jquery.draggable.js
│   │   │   │   │   │   ├── jquery.droppable.js
│   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   ├── jquery.layout.js
│   │   │   │   │   │   ├── jquery.linkbutton.js
│   │   │   │   │   │   ├── jquery.menubutton.js
│   │   │   │   │   │   ├── jquery.menu.js
│   │   │   │   │   │   ├── jquery.messager.js
│   │   │   │   │   │   ├── jquery.numberbox.js
│   │   │   │   │   │   ├── jquery.numberspinner.js
│   │   │   │   │   │   ├── jquery.pagination.js
│   │   │   │   │   │   ├── jquery.panel.js
│   │   │   │   │   │   ├── jquery.parser.js
│   │   │   │   │   │   ├── jquery.progressbar.js
│   │   │   │   │   │   ├── jquery.propertygrid.js
│   │   │   │   │   │   ├── jquery.resizable.js
│   │   │   │   │   │   ├── jquery.searchbox.js
│   │   │   │   │   │   ├── jquery.slider.js
│   │   │   │   │   │   ├── jquery.spinner.js
│   │   │   │   │   │   ├── jquery.splitbutton.js
│   │   │   │   │   │   ├── jquery.tabs.js
│   │   │   │   │   │   ├── jquery.timespinner.js
│   │   │   │   │   │   ├── jquery.treegrid.js
│   │   │   │   │   │   ├── jquery.tree.js
│   │   │   │   │   │   ├── jquery.validatebox.js
│   │   │   │   │   │   └── jquery.window.js
│   │   │   │   │   └── themes
│   │   │   │   │   ├── black
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.css
│   │   │   │   │   │   ├── datagrid.css
│   │   │   │   │   │   ├── datebox.css
│   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   ├── easyui.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_arrows.png
│   │   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   │   ├── layout.css
│   │   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.css
│   │   │   │   │   │   ├── messager.css
│   │   │   │   │   │   ├── pagination.css
│   │   │   │   │   │   ├── panel.css
│   │   │   │   │   │   ├── progressbar.css
│   │   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   │   ├── searchbox.css
│   │   │   │   │   │   ├── slider.css
│   │   │   │   │   │   ├── spinner.css
│   │   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   │   ├── tabs.css
│   │   │   │   │   │   ├── tree.css
│   │   │   │   │   │   ├── validatebox.css
│   │   │   │   │   │   └── window.css
│   │   │   │   │   ├── bootstrap
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.css
│   │   │   │   │   │   ├── datagrid.css
│   │   │   │   │   │   ├── datebox.css
│   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   ├── easyui.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_arrows.png
│   │   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   │   ├── layout.css
│   │   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.css
│   │   │   │   │   │   ├── messager.css
│   │   │   │   │   │   ├── pagination.css
│   │   │   │   │   │   ├── panel.css
│   │   │   │   │   │   ├── progressbar.css
│   │   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   │   ├── searchbox.css
│   │   │   │   │   │   ├── slider.css
│   │   │   │   │   │   ├── spinner.css
│   │   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   │   ├── tabs.css
│   │   │   │   │   │   ├── tree.css
│   │   │   │   │   │   ├── validatebox.css
│   │   │   │   │   │   └── window.css
│   │   │   │   │   ├── default
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.css
│   │   │   │   │   │   ├── datagrid.css
│   │   │   │   │   │   ├── datebox.css
│   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   ├── easyui.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_arrows.png
│   │   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   │   ├── layout.css
│   │   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.css
│   │   │   │   │   │   ├── messager.css
│   │   │   │   │   │   ├── pagination.css
│   │   │   │   │   │   ├── panel.css
│   │   │   │   │   │   ├── progressbar.css
│   │   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   │   ├── searchbox.css
│   │   │   │   │   │   ├── slider.css
│   │   │   │   │   │   ├── spinner.css
│   │   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   │   ├── tabs.css
│   │   │   │   │   │   ├── tree.css
│   │   │   │   │   │   ├── validatebox.css
│   │   │   │   │   │   └── window.css
│   │   │   │   │   ├── gray
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.css
│   │   │   │   │   │   ├── datagrid.css
│   │   │   │   │   │   ├── datebox.css
│   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   ├── easyui.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_arrows.png
│   │   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   │   ├── layout.css
│   │   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.css
│   │   │   │   │   │   ├── messager.css
│   │   │   │   │   │   ├── pagination.css
│   │   │   │   │   │   ├── panel.css
│   │   │   │   │   │   ├── progressbar.css
│   │   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   │   ├── searchbox.css
│   │   │   │   │   │   ├── slider.css
│   │   │   │   │   │   ├── spinner.css
│   │   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   │   ├── tabs.css
│   │   │   │   │   │   ├── tree.css
│   │   │   │   │   │   ├── validatebox.css
│   │   │   │   │   │   └── window.css
│   │   │   │   │   ├── icon.css
│   │   │   │   │   ├── icons
│   │   │   │   │   │   ├── back.png
│   │   │   │   │   │   ├── blank.gif
│   │   │   │   │   │   ├── cancel.png
│   │   │   │   │   │   ├── cut.png
│   │   │   │   │   │   ├── edit_add.png
│   │   │   │   │   │   ├── edit_remove.png
│   │   │   │   │   │   ├── filesave.png
│   │   │   │   │   │   ├── help.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
│   │   │   │   │   ├── 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_arrows.png
│   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   ├── layout.css
│   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   ├── menubutton.css
│   │   │   │   │   ├── menu.css
│   │   │   │   │   ├── messager.css
│   │   │   │   │   ├── pagination.css
│   │   │   │   │   ├── panel.css
│   │   │   │   │   ├── progressbar.css
│   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   ├── searchbox.css
│   │   │   │   │   ├── slider.css
│   │   │   │   │   ├── spinner.css
│   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   ├── tabs.css
│   │   │   │   │   ├── tree.css
│   │   │   │   │   ├── validatebox.css
│   │   │   │   │   └── window.css
│   │   │   │   ├── index.js
│   │   │   │   ├── jquery-1.8.3.js
│   │   │   │   ├── jquery-1.9.1.min.js
│   │   │   │   ├── jquery-2.1.1.min.js
│   │   │   │   ├── jquery.dataTables.min.js
│   │   │   │   ├── jquery.dialog.js
│   │   │   │   ├── utils.js
│   │   │   │   └── ztree
│   │   │   │   ├── img
│   │   │   │   │   ├── diy
│   │   │   │   │   │   ├── 1_close.png
│   │   │   │   │   │   ├── 1_open.png
│   │   │   │   │   │   ├── 2.png
│   │   │   │   │   │   ├── 3.png
│   │   │   │   │   │   ├── 4.png
│   │   │   │   │   │   ├── 5.png
│   │   │   │   │   │   ├── 6.png
│   │   │   │   │   │   ├── 7.png
│   │   │   │   │   │   ├── 8.png
│   │   │   │   │   │   └── 9.png
│   │   │   │   │   ├── line_conn.gif
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── zTreeStandard.gif
│   │   │   │   │   └── zTreeStandard.png
│   │   │   │   ├── jquery.ztree.all-3.5.js
│   │   │   │   └── zTreeStyle.css
│   │   │   ├── bootstrap.js
│   │   │   ├── easing.js
│   │   │   ├── imagezoom.js
│   │   │   ├── jquery-1.11.1.min.js
│   │   │   ├── jquery-1.8.3.js
│   │   │   ├── jquery-1.8.3.min.js
│   │   │   ├── jquery-2.1.1.min.js
│   │   │   ├── jquery.flexisel.js
│   │   │   ├── jquery.flexslider.js
│   │   │   ├── jquery.jscrollpane.min.js
│   │   │   ├── jquery.lightbox.js
│   │   │   ├── megamenu.js
│   │   │   ├── menu_jquery.js
│   │   │   ├── move-top.js
│   │   │   ├── nlogin.js
│   │   │   ├── scripts.js
│   │   │   ├── seed-min.js
│   │   │   └── simpleCart.min.js
│   │   └── talk
│   │   └── c-cxh-only0218.js
│   ├── show
│   │   ├── about.jsp
│   │   ├── admin
│   │   │   ├── adminindex.jsp
│   │   │   ├── admininfo.jsp
│   │   │   ├── adminlist.jsp
│   │   │   ├── categoryindex.jsp
│   │   │   ├── categorylist.jsp
│   │   │   ├── editAdmin.jsp
│   │   │   ├── home.jsp
│   │   │   ├── index.jsp
│   │   │   ├── login.jsp
│   │   │   ├── productadd.jsp
│   │   │   ├── productindex.jsp
│   │   │   ├── productinfo.jsp
│   │   │   └── productlist.jsp
│   │   ├── contact.jsp
│   │   ├── designer
│   │   │   ├── designeradd.jsp
│   │   │   ├── designerindex.jsp
│   │   │   ├── designerinfo.jsp
│   │   │   └── designerlist.jsp
│   │   ├── designers.jsp
│   │   ├── error.jsp
│   │   ├── gallery.jsp
│   │   ├── header.jsp
│   │   ├── image
│   │   │   └── imagepath
│   │   │   ├── bai13.jpg
│   │   │   ├── bai14.jpg
│   │   │   ├── bai1.jpg
│   │   │   ├── bai4.jpg
│   │   │   ├── bai5.jpg
│   │   │   ├── bai7.jpg
│   │   │   ├── bai.jpg
│   │   │   └── designer.jpg
│   │   ├── index.jsp
│   │   ├── indexmore.jsp
│   │   ├── jsp
│   │   │   ├── error2.jsp
│   │   │   ├── error.jsp
│   │   │   └── success.jsp
│   │   ├── login.jsp
│   │   ├── NewFile.jsp
│   │   ├── portal
│   │   │   ├── bug.jsp
│   │   │   ├── daiban.jsp
│   │   │   ├── gonggao.jsp
│   │   │   └── yujing.jsp
│   │   ├── profile.jsp
│   │   ├── register.jsp
│   │   ├── shopCart
│   │   │   └── shopCart.jsp
│   │   └── typo.jsp
│   ├── style
│   │   ├── apply.jsp
│   │   ├── css
│   │   │   ├── apply.css
│   │   │   ├── common.css
│   │   │   ├── message.css
│   │   │   └── style.css
│   │   ├── image
│   │   │   ├── p14.jpg
│   │   │   ├── p15.jpg
│   │   │   ├── p1.jpg
│   │   │   ├── p2.jpg
│   │   │   ├── p4.jpg
│   │   │   └── style2.jpg
│   │   ├── index.jsp
│   │   ├── js
│   │   │   └── index.js
│   │   ├── login_message.jsp
│   │   └── message.jsp
│   ├── uploads
│   │   ├── 20160730203518967307.jpg
│   │   ├── bai1.jpg
│   │   └── default.jpg
│   └── WEB-INF
│   ├── classes
│   │   ├── applicationContext-dao.xml
│   │   ├── applicationContext-service.xml
│   │   ├── applicationContext-transaction.xml
│   │   ├── com
│   │   │   └── show
│   │   │   ├── controller
│   │   │   │   ├── AdminController.class
│   │   │   │   ├── CollectionController.class
│   │   │   │   ├── DesignerController.class
│   │   │   │   ├── IndexController.class
│   │   │   │   ├── MyAuthenticator.class
│   │   │   │   ├── ProductController.class
│   │   │   │   ├── StyleController.class
│   │   │   │   └── UserController.class
│   │   │   ├── mapper
│   │   │   │   ├── AdminMapper.class
│   │   │   │   ├── AdminMapper.xml
│   │   │   │   ├── CategoryMapper.class
│   │   │   │   ├── CategoryMapper.xml
│   │   │   │   ├── CollectionMapper.class
│   │   │   │   ├── CollectionMapper.xml
│   │   │   │   ├── DesignerMapper.class
│   │   │   │   ├── DesignerMapper.xml
│   │   │   │   ├── MenuMapper.class
│   │   │   │   ├── MenuMapper.xml
│   │   │   │   ├── ProductMapper.class
│   │   │   │   ├── ProductMapper.xml
│   │   │   │   ├── ShopcartMapper.class
│   │   │   │   ├── ShopcartMapper.xml
│   │   │   │   ├── StyleMapper.class
│   │   │   │   ├── StyleMapper.xml
│   │   │   │   ├── TestMapper.class
│   │   │   │   ├── TestMapper.xml
│   │   │   │   ├── UserMapper.class
│   │   │   │   └── UserMapper.xml
│   │   │   ├── model
│   │   │   │   ├── Admin.class
│   │   │   │   ├── AdminExample$Criteria.class
│   │   │   │   ├── AdminExample$Criterion.class
│   │   │   │   ├── AdminExample$GeneratedCriteria.class
│   │   │   │   ├── AdminExample.class
│   │   │   │   ├── Category.class
│   │   │   │   ├── CategoryExample$Criteria.class
│   │   │   │   ├── CategoryExample$Criterion.class
│   │   │   │   ├── CategoryExample$GeneratedCriteria.class
│   │   │   │   ├── CategoryExample.class
│   │   │   │   ├── Collection.class
│   │   │   │   ├── Designer.class
│   │   │   │   ├── Menu.class
│   │   │   │   ├── Product.class
│   │   │   │   ├── ProductExample$Criteria.class
│   │   │   │   ├── ProductExample$Criterion.class
│   │   │   │   ├── ProductExample$GeneratedCriteria.class
│   │   │   │   ├── ProductExample.class
│   │   │   │   ├── Shopcart.class
│   │   │   │   ├── ShopcartExample$Criteria.class
│   │   │   │   ├── ShopcartExample$Criterion.class
│   │   │   │   ├── ShopcartExample$GeneratedCriteria.class
│   │   │   │   ├── ShopcartExample.class
│   │   │   │   ├── Style.class
│   │   │   │   ├── TaotaoResult.class
│   │   │   │   ├── Test.class
│   │   │   │   ├── User.class
│   │   │   │   ├── UserExample$Criteria.class
│   │   │   │   ├── UserExample$Criterion.class
│   │   │   │   ├── UserExample$GeneratedCriteria.class
│   │   │   │   └── UserExample.class
│   │   │   ├── service
│   │   │   │   ├── AdminService.class
│   │   │   │   ├── CategoryService.class
│   │   │   │   ├── CollectionService.class
│   │   │   │   ├── DesignerService.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── AdminServiceImpl.class
│   │   │   │   │   ├── CategoryServiceImpl.class
│   │   │   │   │   ├── CollectionServiceImpl.class
│   │   │   │   │   ├── DesignerServiceImpl.class
│   │   │   │   │   ├── ProductServiceImpl.class
│   │   │   │   │   ├── ShopcartServiceImpl.class
│   │   │   │   │   ├── StyleServiceImpl.class
│   │   │   │   │   ├── TestServiceImpl.class
│   │   │   │   │   └── UserServiceImpl.class
│   │   │   │   ├── ProductService.class
│   │   │   │   ├── ShopcartService.class
│   │   │   │   ├── StyleService.class
│   │   │   │   ├── TestService.class
│   │   │   │   └── UserService.class
│   │   │   ├── tools
│   │   │   │   ├── FileUpload.class
│   │   │   │   └── Page.class
│   │   │   └── untils
│   │   │   ├── CookieUtils.class
│   │   │   ├── HttpClientUtil.class
│   │   │   ├── JsonUtils.class
│   │   │   ├── QRcode.class
│   │   │   └── StringUtil.class
│   │   ├── CustomValidationMessages.properties
│   │   ├── db.properties
│   │   ├── log4j.properties
│   │   ├── springmvc.xml
│   │   └── sqlMapConfig.xml
│   ├── lib
│   │   ├── activation-1.1.jar
│   │   ├── aopalliance-1.0.jar
│   │   ├── aspectjweaver-1.7.4.jar
│   │   ├── commons-beanutils-1.8.3.jar
│   │   ├── commons-codec-1.9.jar
│   │   ├── commons-collections-3.2.1.jar
│   │   ├── commons-dbcp-1.2.2.jar
│   │   ├── commons-fileupload-1.3.1.jar
│   │   ├── commons-httpclient-3.1.jar
│   │   ├── commons-io-2.4.jar
│   │   ├── commons-lang-2.6.jar
│   │   ├── commons-logging-1.1.1.jar
│   │   ├── commons-logging-1.1.3.jar
│   │   ├── commons-pool-1.3.jar
│   │   ├── dom4j-1.6.1.jar
│   │   ├── ezmorph-1.0.6.jar
│   │   ├── fastjson-1.1.41.jar
│   │   ├── httpclient-4.3.4.jar
│   │   ├── httpcore-4.3.2.jar
│   │   ├── jackson-annotations-2.8.0.jar
│   │   ├── jackson-core-2.8.6.jar
│   │   ├── jackson-core-asl-1.9.13.jar
│   │   ├── jackson-databind-2.8.6.jar
│   │   ├── jackson-jaxrs-base-2.8.6.jar
│   │   ├── jackson-jaxrs-json-provider-2.8.6.jar
│   │   ├── jackson-mapper-asl-1.9.13.jar
│   │   ├── jackson-module-jaxb-annotations-2.8.6.jar
│   │   ├── jackson-xc-1.9.2.jar
│   │   ├── jackson-xml-databind-0.6.2.jar
│   │   ├── jdom-1.1.jar
│   │   ├── json-lib-2.1.jar
│   │   ├── json-lib-2.2.2-jdk15.jar
│   │   ├── jstl-1.2.jar
│   │   ├── log4j-1.2.17.jar
│   │   ├── mail-1.4.jar
│   │   ├── mybatis-3.2.6.jar
│   │   ├── mybatis-spring-1.2.2.jar
│   │   ├── mysql-connector-java-5.1.30.jar
│   │   ├── QRCode.jar
│   │   ├── servlet-api-2.5.jar
│   │   ├── slf4j-api-1.7.7.jar
│   │   ├── slf4j-log4j12-1.7.7.jar
│   │   ├── spring-aop-4.0.2.RELEASE.jar
│   │   ├── spring-beans-4.0.2.RELEASE.jar
│   │   ├── spring-context-4.0.2.RELEASE.jar
│   │   ├── spring-context-support-4.0.2.RELEASE.jar
│   │   ├── spring-core-4.0.2.RELEASE.jar
│   │   ├── spring-expression-4.0.2.RELEASE.jar
│   │   ├── spring-jdbc-4.0.2.RELEASE.jar
│   │   ├── spring-oxm-4.0.2.RELEASE.jar
│   │   ├── spring-test-4.0.2.RELEASE.jar
│   │   ├── spring-tx-4.0.2.RELEASE.jar
│   │   ├── spring-web-4.0.2.RELEASE.jar
│   │   ├── spring-webmvc-4.0.2.RELEASE.jar
│   │   ├── stax2-api-3.1.0.jar
│   │   └── stax-api-1.0-2.jar
│   └── web.xml
└── maven_show-0.0.1-SNAPSHOT.war

174 directories, 1692 files

标签:

实例下载地址

基于SSM的服装设计作品在线展销系统(毕设源码)

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警