首页 Java N089基于SSM/Java的订单管理系统的设计与实现
N089基于SSM/Java的订单管理系统的设计与实现
作品编号:1104
关注人气:1819
文件包括:设计源码+数据库+论文
设计大小:69.74 M
开发语言:Java
开发数据库:MySQL
开发环境:Eclipse+Tomcat8+JDK1.8
原价:900元
现价:90元
下载说明

本作品里面包括调试教程和开发工具和软件,可自行下载根据教程进行调试!

如需技术协助调试,本站收取50元作品调试费!点此申请调试

如果上面没有找到适合您需求的作品,您可联系我们为您定做,定做的作品完全按照您的功能需求来做,并且后期三包,包调试,包讲解,包修改直到通过为止。

  • 作品介绍
  • 项目目录
  • 论文目录
  • 论文预览

4-1 系统数据库整体信息表

本系统共包含8个表:分别是商品信息表,商品类型表表,用户信息表,卖家信息表,库存表表,明细表表,商品类别表等信息表

表名

说明

功能

goods

商品信息

主要用来存放商品信息的相关内容

goodstype

商品类型

主要用来存放商品类型的相关内容

ordert

订单信息

主要用来存放的相关内容

person

用户信息

主要用来存放用户信息的相关内容

preuser

卖家信息

主要用来存放卖家信息的相关内容

store

库存表

主要用来存放库存表的相关内容

storedetail

明细表

主要用来存放明细表的相关内容

user

商品类别

主要用来存放商品类别的相关内容

4-2 商品信息信息表

此表用于记录系统所有商品信息的基本信息,包括商品编号,商品名称,商品状态,创建时间,商品类型等信息

字段名

说明

类型

长度

可否为空

主键

gId

商品编号

varchar

50

goodsName

商品名称

varchar

50

status

商品状态

varchar

50

createDate

创建时间

varchar

50

goodType

商品类型

varchar

50

卷 软件 的文件夹 PATH 列表
卷序列号为 0008-B552
D:\TEST\源码
│  jspssm订单管理系统my2018论文.doc
│  
└─ssmstore
    │  .classpath
    │  .gitignore
    │  .project
    │  README.md
    │  ssmstore.sql
    │  
    ├─.settings
    │      .jsdtscope
    │      .rebel-remote.xml.bak
    │      org.eclipse.core.resources.prefs
    │      org.eclipse.jdt.core.prefs
    │      org.eclipse.wst.common.component
    │      org.eclipse.wst.common.project.facet.core.xml
    │      org.eclipse.wst.jsdt.ui.superType.container
    │      org.eclipse.wst.jsdt.ui.superType.name
    │      
    ├─build
    │  └─classes
    │      │  config.properties
    │      │  jdbc.properties
    │      │  log4j.properties
    │      │  rebel.xml
    │      │  spring-mvc.xml
    │      │  spring-mybatis.xml
    │      │  
    │      ├─com
    │      │  └─ognice
    │      │      ├─controller
    │      │      │  │  GoodsController.class
    │      │      │  │  GoodsTypeController.class
    │      │      │  │  IndexController.class
    │      │      │  │  OrderController.class
    │      │      │  │  PersonController.class
    │      │      │  │  
    │      │      │  └─common
    │      │      │          JsonResult.class
    │      │      │          Page.class
    │      │      │          PageResult.class
    │      │      │          PageSearchParam.class
    │      │      │          
    │      │      ├─dao
    │      │      │      GoodsMapper.class
    │      │      │      GoodsTypeMapper.class
    │      │      │      OrderMapper.class
    │      │      │      PersonMapper.class
    │      │      │      
    │      │      ├─domain
    │      │      │      Goods.class
    │      │      │      GoodsType.class
    │      │      │      Order.class
    │      │      │      Person.class
    │      │      │      Result.class
    │      │      │      
    │      │      ├─interceptor
    │      │      │      GlobalInterceptor.class
    │      │      │      LoginInterceptor.class
    │      │      │      
    │      │      ├─service
    │      │      │  │  IGoodsService.class
    │      │      │  │  iOrderService.class
    │      │      │  │  IPersonService.class
    │      │      │  │  
    │      │      │  └─impl
    │      │      │          GoodsServiceImpl.class
    │      │      │          OrderServiceImpl.class
    │      │      │          PersonServiceImpl.class
    │      │      │          
    │      │      └─util
    │      │              PageConstants.class
    │      │              ResultUtil.class
    │      │              
    │      ├─mapping
    │      │      GoodsMapper.xml
    │      │      GoodsTypeMapper.xml
    │      │      OrderMapper.xml
    │      │      PersonMapper.xml
    │      │      
    │      └─mybatis
    │              sqlMapConfig.xml
    │              
    ├─logs
    │      ssm.log
    │      
    ├─resources
    │  │  config.properties
    │  │  jdbc.properties
    │  │  log4j.properties
    │  │  spring-mvc.xml
    │  │  spring-mybatis.xml
    │  │  
    │  ├─mapping
    │  │      GoodsMapper.xml
    │  │      GoodsTypeMapper.xml
    │  │      OrderMapper.xml
    │  │      PersonMapper.xml
    │  │      
    │  └─mybatis
    │          sqlMapConfig.xml
    │          
    ├─src
    │  │  rebel.xml
    │  │  
    │  └─com
    │      └─ognice
    │          ├─controller
    │          │  │  GoodsController.java
    │          │  │  GoodsTypeController.java
    │          │  │  IndexController.java
    │          │  │  OrderController.java
    │          │  │  PersonController.java
    │          │  │  
    │          │  └─common
    │          │          JsonResult.java
    │          │          Page.java
    │          │          PageResult.java
    │          │          PageSearchParam.java
    │          │          
    │          ├─dao
    │          │      GoodsMapper.java
    │          │      GoodsTypeMapper.java
    │          │      OrderMapper.java
    │          │      PersonMapper.java
    │          │      
    │          ├─domain
    │          │      Goods.java
    │          │      GoodsType.java
    │          │      Order.java
    │          │      Person.java
    │          │      Result.java
    │          │      
    │          ├─interceptor
    │          │      GlobalInterceptor.java
    │          │      LoginInterceptor.java
    │          │      
    │          ├─service
    │          │  │  IGoodsService.java
    │          │  │  iOrderService.java
    │          │  │  IPersonService.java
    │          │  │  
    │          │  └─impl
    │          │          GoodsServiceImpl.java
    │          │          OrderServiceImpl.java
    │          │          PersonServiceImpl.java
    │          │          
    │          └─util
    │                  PageConstants.java
    │                  ResultUtil.java
    │                  
    └─WebContent
        │  index.jsp
        │  
        ├─META-INF
        │      MANIFEST.MF
        │      
        ├─static
        │  ├─bootstrap
        │  │  ├─css
        │  │  │      bootstrap.css
        │  │  │      bootstrap.css.map
        │  │  │      bootstrap.min.css
        │  │  │      bootstrap.min.css.map
        │  │  │      
        │  │  ├─fonts
        │  │  │      glyphicons-halflings-regular.eot
        │  │  │      glyphicons-halflings-regular.svg
        │  │  │      glyphicons-halflings-regular.ttf
        │  │  │      glyphicons-halflings-regular.woff
        │  │  │      glyphicons-halflings-regular.woff2
        │  │  │      
        │  │  └─js
        │  │          bootstrap.js
        │  │          bootstrap.min.js
        │  │          npm.js
        │  │          
        │  ├─build
        │  │  ├─bootstrap-less
        │  │  │  │  mixins.less
        │  │  │  │  variables.less
        │  │  │  │  
        │  │  │  └─mixins
        │  │  │          alerts.less
        │  │  │          background-variant.less
        │  │  │          border-radius.less
        │  │  │          buttons.less
        │  │  │          center-block.less
        │  │  │          clearfix.less
        │  │  │          forms.less
        │  │  │          gradients.less
        │  │  │          grid-framework.less
        │  │  │          grid.less
        │  │  │          hide-text.less
        │  │  │          image.less
        │  │  │          labels.less
        │  │  │          list-group.less
        │  │  │          nav-divider.less
        │  │  │          nav-vertical-align.less
        │  │  │          opacity.less
        │  │  │          pagination.less
        │  │  │          panels.less
        │  │  │          progress-bar.less
        │  │  │          reset-filter.less
        │  │  │          reset-text.less
        │  │  │          resize.less
        │  │  │          responsive-visibility.less
        │  │  │          size.less
        │  │  │          tab-focus.less
        │  │  │          table-row.less
        │  │  │          text-emphasis.less
        │  │  │          text-overflow.less
        │  │  │          vendor-prefixes.less
        │  │  │          
        │  │  └─less
        │  │      │  .csslintrc
        │  │      │  404_500_errors.less
        │  │      │  AdminLTE.less
        │  │      │  alerts.less
        │  │      │  bootstrap-social.less
        │  │      │  boxes.less
        │  │      │  buttons.less
        │  │      │  callout.less
        │  │      │  carousel.less
        │  │      │  control-sidebar.less
        │  │      │  core.less
        │  │      │  direct-chat.less
        │  │      │  dropdown.less
        │  │      │  forms.less
        │  │      │  fullcalendar.less
        │  │      │  header.less
        │  │      │  info-box.less
        │  │      │  invoice.less
        │  │      │  labels.less
        │  │      │  lockscreen.less
        │  │      │  login_and_register.less
        │  │      │  mailbox.less
        │  │      │  miscellaneous.less
        │  │      │  mixins.less
        │  │      │  modal.less
        │  │      │  navs.less
        │  │      │  print.less
        │  │      │  products.less
        │  │      │  profile.less
        │  │      │  progress-bars.less
        │  │      │  select2.less
        │  │      │  sidebar-mini.less
        │  │      │  sidebar.less
        │  │      │  small-box.less
        │  │      │  social-widgets.less
        │  │      │  table.less
        │  │      │  timeline.less
        │  │      │  users-list.less
        │  │      │  variables.less
        │  │      │  
        │  │      └─skins
        │  │              skin-black-light.less
        │  │              skin-black.less
        │  │              skin-blue-light.less
        │  │              skin-blue.less
        │  │              skin-green-light.less
        │  │              skin-green.less
        │  │              skin-purple-light.less
        │  │              skin-purple.less
        │  │              skin-red-light.less
        │  │              skin-red.less
        │  │              skin-yellow-light.less
        │  │              skin-yellow.less
        │  │              _all-skins.less
        │  │              
        │  ├─css
        │  │      select.css
        │  │      style.css
        │  │      
        │  ├─dist
        │  │  ├─css
        │  │  │  │  AdminLTE.css
        │  │  │  │  AdminLTE.min.css
        │  │  │  │  font-awesome.min.css
        │  │  │  │  fontawesome-webfont.woff2
        │  │  │  │  ionicons.min.css
        │  │  │  │  
        │  │  │  └─skins
        │  │  │          skin-black-light.css
        │  │  │          skin-black-light.min.css
        │  │  │          skin-black.css
        │  │  │          skin-black.min.css
        │  │  │          skin-blue-light.css
        │  │  │          skin-blue-light.min.css
        │  │  │          skin-blue.css
        │  │  │          skin-blue.min.css
        │  │  │          skin-green-light.css
        │  │  │          skin-green-light.min.css
        │  │  │          skin-green.css
        │  │  │          skin-green.min.css
        │  │  │          skin-purple-light.css
        │  │  │          skin-purple-light.min.css
        │  │  │          skin-purple.css
        │  │  │          skin-purple.min.css
        │  │  │          skin-red-light.css
        │  │  │          skin-red-light.min.css
        │  │  │          skin-red.css
        │  │  │          skin-red.min.css
        │  │  │          skin-yellow-light.css
        │  │  │          skin-yellow-light.min.css
        │  │  │          skin-yellow.css
        │  │  │          skin-yellow.min.css
        │  │  │          _all-skins.css
        │  │  │          _all-skins.min.css
        │  │  │          
        │  │  ├─fonts
        │  │  │      fontawesome-webfont.woff2
        │  │  │      ionicons.ttf
        │  │  │      
        │  │  ├─img
        │  │  │  │  avatar.png
        │  │  │  │  avatar04.png
        │  │  │  │  avatar2.png
        │  │  │  │  avatar3.png
        │  │  │  │  avatar5.png
        │  │  │  │  boxed-bg.jpg
        │  │  │  │  boxed-bg.png
        │  │  │  │  default-50x50.gif
        │  │  │  │  i.png
        │  │  │  │  icons.png
        │  │  │  │  login_bg3.png
        │  │  │  │  p.png
        │  │  │  │  photo1.png
        │  │  │  │  photo2.png
        │  │  │  │  photo3.jpg
        │  │  │  │  photo4.jpg
        │  │  │  │  user1-128x128.jpg
        │  │  │  │  user2-160x160.jpg
        │  │  │  │  user3-128x128.jpg
        │  │  │  │  user4-128x128.jpg
        │  │  │  │  user5-128x128.jpg
        │  │  │  │  user6-128x128.jpg
        │  │  │  │  user7-128x128.jpg
        │  │  │  │  user8-128x128.jpg
        │  │  │  │  
        │  │  │  └─credit
        │  │  │          american-express.png
        │  │  │          cirrus.png
        │  │  │          mastercard.png
        │  │  │          mestro.png
        │  │  │          paypal.png
        │  │  │          paypal2.png
        │  │  │          visa.png
        │  │  │          
        │  │  └─js
        │  │      │  app.js
        │  │      │  app.min.js
        │  │      │  demo.js
        │  │      │  moment.min.js
        │  │      │  raphael-min.js
        │  │      │  
        │  │      └─pages
        │  │              dashboard.js
        │  │              dashboard2.js
        │  │              
        │  ├─images
        │  │      001.jpg
        │  │      404.png
        │  │      add.png
        │  │      btnbg.png
        │  │      btnbg1.png
        │  │      btnbg2.png
        │  │      buttonbg.png
        │  │      c01.png
        │  │      c02.png
        │  │      c03.png
        │  │      cbg.png
        │  │      clist.png
        │  │      close.png
        │  │      close1.png
        │  │      cloud.png
        │  │      d01.png
        │  │      d02.png
        │  │      d03.png
        │  │      d04.png
        │  │      d05.png
        │  │      d06.png
        │  │      d07.png
        │  │      diskbg.png
        │  │      dp.png
        │  │      f01.png
        │  │      f02.png
        │  │      f03.png
        │  │      f04.png
        │  │      f05.png
        │  │      f06.png
        │  │      help.png
        │  │      i01.png
        │  │      i02.png
        │  │      i03.png
        │  │      i04.png
        │  │      i05.png
        │  │      i06.png
        │  │      i07.png
        │  │      i08.png
        │  │      i09.png
        │  │      iadd.png
        │  │      ibtnbg.png
        │  │      ico01.png
        │  │      ico02.png
        │  │      ico03.png
        │  │      ico04.png
        │  │      ico05.png
        │  │      ico06.png
        │  │      icon01.png
        │  │      icon02.png
        │  │      icon03.png
        │  │      icon04.png
        │  │      icon05.png
        │  │      icon06.png
        │  │      img01.png
        │  │      img02.png
        │  │      img03.png
        │  │      img04.png
        │  │      img05.png
        │  │      img06.png
        │  │      img07.png
        │  │      img08.png
        │  │      img09.png
        │  │      img10.png
        │  │      img11.png
        │  │      img12.png
        │  │      img13.png
        │  │      img14.png
        │  │      img15.png
        │  │      inputbg.gif
        │  │      itabbg.png
        │  │      itabbg1.png
        │  │      leftico.png
        │  │      leftico01.png
        │  │      leftico02.png
        │  │      leftico03.png
        │  │      leftico04.png
        │  │      leftline.gif
        │  │      leftmenubg.gif
        │  │      lefttop.gif
        │  │      libg.png
        │  │      light.png
        │  │      line.gif
        │  │      line1.png
        │  │      list.gif
        │  │      list1.gif
        │  │      list2.png
        │  │      loginbg1.png
        │  │      loginbg2.png
        │  │      loginbg3.png
        │  │      logininfo.png
        │  │      loginlogo.png
        │  │      loginpassword.png
        │  │      loginsj.png
        │  │      loginuser.png
        │  │      logo.png
        │  │      msg.png
        │  │      navbg.png
        │  │      next.gif
        │  │      pre.gif
        │  │      px.gif
        │  │      righttop.gif
        │  │      rlist.gif
        │  │      search.png
        │  │      sj.png
        │  │      sun.png
        │  │      t01.png
        │  │      t02.png
        │  │      t03.png
        │  │      t04.png
        │  │      t05.png
        │  │      tbg.png
        │  │      tcbg.gif
        │  │      th.gif
        │  │      ticon.png
        │  │      time.png
        │  │      toolbg.gif
        │  │      topbg.gif
        │  │      topleft.jpg
        │  │      topright.jpg
        │  │      ub1.png
        │  │      uew_icon.png
        │  │      uew_icon_hover.png
        │  │      ulist.png
        │  │      user.png
        │  │      userbg.png
        │  │      
        │  ├─js
        │  │      cloud.js
        │  │      echarts.min.js
        │  │      format+zh_CN,default,corechart.I.js
        │  │      jquery.alerts.js
        │  │      jquery.ba-resize.min.js
        │  │      jquery.gvChart-1.0.1.min.js
        │  │      jquery.idTabs.min.js
        │  │      jquery.js
        │  │      jsapi.js
        │  │      PIE.htc
        │  │      select-ui.min.js
        │  │      
        │  ├─kcsj
        │  │  │  .gitignore
        │  │  │  
        │  │  ├─css
        │  │  │      common.css
        │  │  │      css.css
        │  │  │      font-awesome.min.css
        │  │  │      idangerous.swiper.css
        │  │  │      idangerous.swiper.scrollbar.css
        │  │  │      jquery.circliful.css
        │  │  │      LCalendar.css
        │  │  │      LCalendar.min.css
        │  │  │      
        │  │  ├─fonts
        │  │  │      fontawesome-webfont.eot
        │  │  │      fontawesome-webfont.svg
        │  │  │      fontawesome-webfont.ttf
        │  │  │      fontawesome-webfont.woff
        │  │  │      FontAwesome.otf
        │  │  │      
        │  │  ├─images
        │  │  │      add.png
        │  │  │      back.png
        │  │  │      bg.jpg
        │  │  │      bianji.png
        │  │  │      chakan.png
        │  │  │      chuku.png
        │  │  │      d1.png
        │  │  │      d2.png
        │  │  │      d3.png
        │  │  │      d4.png
        │  │  │      d5.png
        │  │  │      fangdajing.png
        │  │  │      jt_d.png
        │  │  │      list.png
        │  │  │      mingxi.png
        │  │  │      pass.png
        │  │  │      ruku.png
        │  │  │      shan.png
        │  │  │      shanchu.png
        │  │  │      user.png
        │  │  │      xiugai.png
        │  │  │      zeng.png
        │  │  │      
        │  │  ├─js
        │  │  │      alertPopShow.js
        │  │  │      jquery-1.10.1.min.js
        │  │  │      jquery-1.10.2.min.js
        │  │  │      jquery.circliful.js
        │  │  │      jquery.circliful.min.js
        │  │  │      LCalendar.js
        │  │  │      LCalendar.min.js
        │  │  │      
        │  │  ├─LCalendar
        │  │  │  ├─css
        │  │  │  │      LCalendar.css
        │  │  │  │      LCalendar.min.css
        │  │  │  │      
        │  │  │  └─js
        │  │  │          LCalendar.js
        │  │  │          LCalendar.min.js
        │  │  │          
        │  │  └─preview
        │  │          full-cicle-filled.PNG
        │  │          full-cicle.PNG
        │  │          half-cicle.PNG
        │  │          small-border-width.png
        │  │          
        │  └─plugins
        │      ├─bootstrap-slider
        │      │      bootstrap-slider.js
        │      │      slider.css
        │      │      
        │      ├─bootstrap-wysihtml5
        │      │      bootstrap3-wysihtml5.all.js
        │      │      bootstrap3-wysihtml5.all.min.js
        │      │      bootstrap3-wysihtml5.css
        │      │      bootstrap3-wysihtml5.min.css
        │      │      
        │      ├─chartjs
        │      │      Chart.js
        │      │      Chart.min.js
        │      │      
        │      ├─ckeditor
        │      │  │  build-config.js
        │      │  │  CHANGES.md
        │      │  │  ckeditor.js
        │      │  │  config.js
        │      │  │  contents.css
        │      │  │  LICENSE.md
        │      │  │  README.md
        │      │  │  styles.js
        │      │  │  
        │      │  ├─adapters
        │      │  │      jquery.js
        │      │  │      
        │      │  ├─lang
        │      │  │      af.js
        │      │  │      ar.js
        │      │  │      bg.js
        │      │  │      bn.js
        │      │  │      bs.js
        │      │  │      ca.js
        │      │  │      cs.js
        │      │  │      cy.js
        │      │  │      da.js
        │      │  │      de-ch.js
        │      │  │      de.js
        │      │  │      el.js
        │      │  │      en-au.js
        │      │  │      en-ca.js
        │      │  │      en-gb.js
        │      │  │      en.js
        │      │  │      eo.js
        │      │  │      es.js
        │      │  │      et.js
        │      │  │      eu.js
        │      │  │      fa.js
        │      │  │      fi.js
        │      │  │      fo.js
        │      │  │      fr-ca.js
        │      │  │      fr.js
        │      │  │      gl.js
        │      │  │      gu.js
        │      │  │      he.js
        │      │  │      hi.js
        │      │  │      hr.js
        │      │  │      hu.js
        │      │  │      id.js
        │      │  │      is.js
        │      │  │      it.js
        │      │  │      ja.js
        │      │  │      ka.js
        │      │  │      km.js
        │      │  │      ko.js
        │      │  │      ku.js
        │      │  │      lt.js
        │      │  │      lv.js
        │      │  │      mk.js
        │      │  │      mn.js
        │      │  │      ms.js
        │      │  │      nb.js
        │      │  │      nl.js
        │      │  │      no.js
        │      │  │      pl.js
        │      │  │      pt-br.js
        │      │  │      pt.js
        │      │  │      ro.js
        │      │  │      ru.js
        │      │  │      si.js
        │      │  │      sk.js
        │      │  │      sl.js
        │      │  │      sq.js
        │      │  │      sr-latn.js
        │      │  │      sr.js
        │      │  │      sv.js
        │      │  │      th.js
        │      │  │      tr.js
        │      │  │      tt.js
        │      │  │      ug.js
        │      │  │      uk.js
        │      │  │      vi.js
        │      │  │      zh-cn.js
        │      │  │      zh.js
        │      │  │      
        │      │  ├─plugins
        │      │  │  │  icons.png
        │      │  │  │  icons_hidpi.png
        │      │  │  │  
        │      │  │  ├─a11yhelp
        │      │  │  │  └─dialogs
        │      │  │  │      │  a11yhelp.js
        │      │  │  │      │  
        │      │  │  │      └─lang
        │      │  │  │              af.js
        │      │  │  │              ar.js
        │      │  │  │              bg.js
        │      │  │  │              ca.js
        │      │  │  │              cs.js
        │      │  │  │              cy.js
        │      │  │  │              da.js
        │      │  │  │              de-ch.js
        │      │  │  │              de.js
        │      │  │  │              el.js
        │      │  │  │              en-gb.js
        │      │  │  │              en.js
        │      │  │  │              eo.js
        │      │  │  │              es.js
        │      │  │  │              et.js
        │      │  │  │              eu.js
        │      │  │  │              fa.js
        │      │  │  │              fi.js
        │      │  │  │              fo.js
        │      │  │  │              fr-ca.js
        │      │  │  │              fr.js
        │      │  │  │              gl.js
        │      │  │  │              gu.js
        │      │  │  │              he.js
        │      │  │  │              hi.js
        │      │  │  │              hr.js
        │      │  │  │              hu.js
        │      │  │  │              id.js
        │      │  │  │              it.js
        │      │  │  │              ja.js
        │      │  │  │              km.js
        │      │  │  │              ko.js
        │      │  │  │              ku.js
        │      │  │  │              lt.js
        │      │  │  │              lv.js
        │      │  │  │              mk.js
        │      │  │  │              mn.js
        │      │  │  │              nb.js
        │      │  │  │              nl.js
        │      │  │  │              no.js
        │      │  │  │              pl.js
        │      │  │  │              pt-br.js
        │      │  │  │              pt.js
        │      │  │  │              ro.js
        │      │  │  │              ru.js
        │      │  │  │              si.js
        │      │  │  │              sk.js
        │      │  │  │              sl.js
        │      │  │  │              sq.js
        │      │  │  │              sr-latn.js
        │      │  │  │              sr.js
        │      │  │  │              sv.js
        │      │  │  │              th.js
        │      │  │  │              tr.js
        │      │  │  │              tt.js
        │      │  │  │              ug.js
        │      │  │  │              uk.js
        │      │  │  │              vi.js
        │      │  │  │              zh-cn.js
        │      │  │  │              zh.js
        │      │  │  │              _translationstatus.txt
        │      │  │  │              
        │      │  │  ├─about
        │      │  │  │  └─dialogs
        │      │  │  │      │  about.js
        │      │  │  │      │  logo_ckeditor.png
        │      │  │  │      │  
        │      │  │  │      └─hidpi
        │      │  │  │              logo_ckeditor.png
        │      │  │  │              
        │      │  │  ├─clipboard
        │      │  │  │  └─dialogs
        │      │  │  │          paste.js
        │      │  │  │          
        │      │  │  ├─dialog
        │      │  │  │      dialogDefinition.js
        │      │  │  │      
        │      │  │  ├─image
        │      │  │  │  ├─dialogs
        │      │  │  │  │      image.js
        │      │  │  │  │      
        │      │  │  │  └─images
        │      │  │  │          noimage.png
        │      │  │  │          
        │      │  │  ├─link
        │      │  │  │  ├─dialogs
        │      │  │  │  │      anchor.js
        │      │  │  │  │      link.js
        │      │  │  │  │      
        │      │  │  │  └─images
        │      │  │  │      │  anchor.png
        │      │  │  │      │  
        │      │  │  │      └─hidpi
        │      │  │  │              anchor.png
        │      │  │  │              
        │      │  │  ├─magicline
        │      │  │  │  └─images
        │      │  │  │      │  icon-rtl.png
        │      │  │  │      │  icon.png
        │      │  │  │      │  
        │      │  │  │      └─hidpi
        │      │  │  │              icon-rtl.png
        │      │  │  │              icon.png
        │      │  │  │              
        │      │  │  ├─pastefromword
        │      │  │  │  └─filter
        │      │  │  │          default.js
        │      │  │  │          
        │      │  │  ├─scayt
        │      │  │  │  │  CHANGELOG.md
        │      │  │  │  │  LICENSE.md
        │      │  │  │  │  README.md
        │      │  │  │  │  
        │      │  │  │  └─dialogs
        │      │  │  │          options.js
        │      │  │  │          toolbar.css
        │      │  │  │          
        │      │  │  ├─specialchar
        │      │  │  │  └─dialogs
        │      │  │  │      │  specialchar.js
        │      │  │  │      │  
        │      │  │  │      └─lang
        │      │  │  │              af.js
        │      │  │  │              ar.js
        │      │  │  │              bg.js
        │      │  │  │              ca.js
        │      │  │  │              cs.js
        │      │  │  │              cy.js
        │      │  │  │              da.js
        │      │  │  │              de-ch.js
        │      │  │  │              de.js
        │      │  │  │              el.js
        │      │  │  │              en-gb.js
        │      │  │  │              en.js
        │      │  │  │              eo.js
        │      │  │  │              es.js
        │      │  │  │              et.js
        │      │  │  │              eu.js
        │      │  │  │              fa.js
        │      │  │  │              fi.js
        │      │  │  │              fr-ca.js
        │      │  │  │              fr.js
        │      │  │  │              gl.js
        │      │  │  │              he.js
        │      │  │  │              hr.js
        │      │  │  │              hu.js
        │      │  │  │              id.js
        │      │  │  │              it.js
        │      │  │  │              ja.js
        │      │  │  │              km.js
        │      │  │  │              ko.js
        │      │  │  │              ku.js
        │      │  │  │              lt.js
        │      │  │  │              lv.js
        │      │  │  │              nb.js
        │      │  │  │              nl.js
        │      │  │  │              no.js
        │      │  │  │              pl.js
        │      │  │  │              pt-br.js
        │      │  │  │              pt.js
        │      │  │  │              ru.js
        │      │  │  │              si.js
        │      │  │  │              sk.js
        │      │  │  │              sl.js
        │      │  │  │              sq.js
        │      │  │  │              sv.js
        │      │  │  │              th.js
        │      │  │  │              tr.js
        │      │  │  │              tt.js
        │      │  │  │              ug.js
        │      │  │  │              uk.js
        │      │  │  │              vi.js
        │      │  │  │              zh-cn.js
        │      │  │  │              zh.js
        │      │  │  │              _translationstatus.txt
        │      │  │  │              
        │      │  │  ├─table
        │      │  │  │  └─dialogs
        │      │  │  │          table.js
        │      │  │  │          
        │      │  │  ├─tabletools
        │      │  │  │  └─dialogs
        │      │  │  │          tableCell.js
        │      │  │  │          
        │      │  │  └─wsc
        │      │  │      │  LICENSE.md
        │      │  │      │  README.md
        │      │  │      │  
        │      │  │      └─dialogs
        │      │  │              ciframe.html
        │      │  │              tmpFrameset.html
        │      │  │              wsc.css
        │      │  │              wsc.js
        │      │  │              wsc_ie.js
        │      │  │              
        │      │  ├─samples
        │      │  │  │  index.html
        │      │  │  │  
        │      │  │  ├─css
        │      │  │  │      samples.css
        │      │  │  │      
        │      │  │  ├─img
        │      │  │  │      github-top.png
        │      │  │  │      header-bg.png
        │      │  │  │      header-separator.png
        │      │  │  │      logo.png
        │      │  │  │      navigation-tip.png
        │      │  │  │      
        │      │  │  ├─js
        │      │  │  │      sample.js
        │      │  │  │      sf.js
        │      │  │  │      
        │      │  │  ├─old
        │      │  │  │  │  ajax.html
        │      │  │  │  │  api.html
        │      │  │  │  │  appendto.html
        │      │  │  │  │  datafiltering.html
        │      │  │  │  │  divreplace.html
        │      │  │  │  │  index.html
        │      │  │  │  │  inlineall.html
        │      │  │  │  │  inlinebycode.html
        │      │  │  │  │  inlinetextarea.html
        │      │  │  │  │  jquery.html
        │      │  │  │  │  readonly.html
        │      │  │  │  │  replacebyclass.html
        │      │  │  │  │  replacebycode.html
        │      │  │  │  │  sample.css
        │      │  │  │  │  sample.js
        │      │  │  │  │  sample_posteddata.php
        │      │  │  │  │  tabindex.html
        │      │  │  │  │  uicolor.html
        │      │  │  │  │  uilanguages.html
        │      │  │  │  │  xhtmlstyle.html
        │      │  │  │  │  
        │      │  │  │  ├─assets
        │      │  │  │  │  │  posteddata.php
        │      │  │  │  │  │  sample.jpg
        │      │  │  │  │  │  
        │      │  │  │  │  ├─inlineall
        │      │  │  │  │  │      logo.png
        │      │  │  │  │  │      
        │      │  │  │  │  ├─outputxhtml
        │      │  │  │  │  │      outputxhtml.css
        │      │  │  │  │  │      
        │      │  │  │  │  └─uilanguages
        │      │  │  │  │          languages.js
        │      │  │  │  │          
        │      │  │  │  ├─dialog
        │      │  │  │  │  │  dialog.html
        │      │  │  │  │  │  
        │      │  │  │  │  └─assets
        │      │  │  │  │          my_dialog.js
        │      │  │  │  │          
        │      │  │  │  ├─enterkey
        │      │  │  │  │      enterkey.html
        │      │  │  │  │      
        │      │  │  │  ├─htmlwriter
        │      │  │  │  │  │  outputforflash.html
        │      │  │  │  │  │  outputhtml.html
        │      │  │  │  │  │  
        │      │  │  │  │  └─assets
        │      │  │  │  │      └─outputforflash
        │      │  │  │  │              outputforflash.fla
        │      │  │  │  │              outputforflash.swf
        │      │  │  │  │              swfobject.js
        │      │  │  │  │              
        │      │  │  │  ├─magicline
        │      │  │  │  │      magicline.html
        │      │  │  │  │      
        │      │  │  │  ├─toolbar
        │      │  │  │  │      toolbar.html
        │      │  │  │  │      
        │      │  │  │  └─wysiwygarea
        │      │  │  │          fullpage.html
        │      │  │  │          
        │      │  │  └─toolbarconfigurator
        │      │  │      │  index.html
        │      │  │      │  
        │      │  │      ├─css
        │      │  │      │      fontello.css
        │      │  │      │      
        │      │  │      ├─font
        │      │  │      │      config.json
        │      │  │      │      fontello.eot
        │      │  │      │      fontello.svg
        │      │  │      │      fontello.ttf
        │      │  │      │      fontello.woff
        │      │  │      │      LICENSE.txt
        │      │  │      │      
        │      │  │      ├─js
        │      │  │      │      abstracttoolbarmodifier.js
        │      │  │      │      fulltoolbareditor.js
        │      │  │      │      toolbarmodifier.js
        │      │  │      │      toolbartextmodifier.js
        │      │  │      │      
        │      │  │      └─lib
        │      │  │          └─codemirror
        │      │  │                  codemirror.css
        │      │  │                  codemirror.js
        │      │  │                  javascript.js
        │      │  │                  LICENSE
        │      │  │                  neo.css
        │      │  │                  show-hint.css
        │      │  │                  show-hint.js
        │      │  │                  
        │      │  └─skins
        │      │      └─moono
        │      │          │  dialog.css
        │      │          │  dialog_ie.css
        │      │          │  dialog_ie7.css
        │      │          │  dialog_ie8.css
        │      │          │  dialog_iequirks.css
        │      │          │  editor.css
        │      │          │  editor_gecko.css
        │      │          │  editor_ie.css
        │      │          │  editor_ie7.css
        │      │          │  editor_ie8.css
        │      │          │  editor_iequirks.css
        │      │          │  icons.png
        │      │          │  icons_hidpi.png
        │      │          │  readme.md
        │      │          │  
        │      │          └─images
        │      │              │  arrow.png
        │      │              │  close.png
        │      │              │  lock-open.png
        │      │              │  lock.png
        │      │              │  refresh.png
        │      │              │  spinner.gif
        │      │              │  
        │      │              └─hidpi
        │      │                      close.png
        │      │                      lock-open.png
        │      │                      lock.png
        │      │                      refresh.png
        │      │                      
        │      ├─colorpicker
        │      │  │  bootstrap-colorpicker.css
        │      │  │  bootstrap-colorpicker.js
        │      │  │  bootstrap-colorpicker.min.css
        │      │  │  bootstrap-colorpicker.min.js
        │      │  │  
        │      │  └─img
        │      │          alpha-horizontal.png
        │      │          alpha.png
        │      │          hue-horizontal.png
        │      │          hue.png
        │      │          saturation.png
        │      │          
        │      ├─datatables
        │      │  │  dataTables.bootstrap.css
        │      │  │  dataTables.bootstrap.js
        │      │  │  dataTables.bootstrap.min.js
        │      │  │  jquery.dataTables.css
        │      │  │  jquery.dataTables.js
        │      │  │  jquery.dataTables.min.css
        │      │  │  jquery.dataTables.min.js
        │      │  │  jquery.dataTables_themeroller.css
        │      │  │  
        │      │  ├─extensions
        │      │  │  ├─AutoFill
        │      │  │  │  │  Readme.txt
        │      │  │  │  │  
        │      │  │  │  ├─css
        │      │  │  │  │      dataTables.autoFill.css
        │      │  │  │  │      dataTables.autoFill.min.css
        │      │  │  │  │      
        │      │  │  │  ├─examples
        │      │  │  │  │      columns.html
        │      │  │  │  │      complete-callback.html
        │      │  │  │  │      fill-both.html
        │      │  │  │  │      fill-horizontal.html
        │      │  │  │  │      index.html
        │      │  │  │  │      scrolling.html
        │      │  │  │  │      simple.html
        │      │  │  │  │      step-callback.html
        │      │  │  │  │      
        │      │  │  │  ├─images
        │      │  │  │  │      filler.png
        │      │  │  │  │      
        │      │  │  │  └─js
        │      │  │  │          dataTables.autoFill.js
        │      │  │  │          dataTables.autoFill.min.js
        │      │  │  │          
        │      │  │  ├─ColReorder
        │      │  │  │  │  License.txt
        │      │  │  │  │  Readme.md
        │      │  │  │  │  
        │      │  │  │  ├─css
        │      │  │  │  │      dataTables.colReorder.css
        │      │  │  │  │      dataTables.colReorder.min.css
        │      │  │  │  │      
        │      │  │  │  ├─examples
        │      │  │  │  │      alt_insert.html
        │      │  │  │  │      colvis.html
        │      │  │  │  │      col_filter.html
        │      │  │  │  │      fixedcolumns.html
        │      │  │  │  │      fixedheader.html
        │      │  │  │  │      index.html
        │      │  │  │  │      jqueryui.html
        │      │  │  │  │      new_init.html
        │      │  │  │  │      predefined.html
        │      │  │  │  │      realtime.html
        │      │  │  │  │      reset.html
        │      │  │  │  │      scrolling.html
        │      │  │  │  │      server_side.html
        │      │  │  │  │      simple.html
        │      │  │  │  │      state_save.html
        │      │  │  │  │      
        │      │  │  │  ├─images
        │      │  │  │  │      insert.png
        │      │  │  │  │      
        │      │  │  │  └─js
        │      │  │  │          dataTables.colReorder.js
        │      │  │  │          dataTables.colReorder.min.js
        │      │  │  │          
        │      │  │  ├─ColVis
        │      │  │  │  │  License.txt
        │      │  │  │  │  Readme.md
        │      │  │  │  │  
        │      │  │  │  ├─css
        │      │  │  │  │      dataTables.colVis.css
        │      │  │  │  │      dataTables.colvis.jqueryui.css
        │      │  │  │  │      dataTables.colVis.min.css
        │      │  │  │  │      
        │      │  │  │  ├─examples
        │      │  │  │  │      button_order.html
        │      │  │  │  │      exclude_columns.html
        │      │  │  │  │      group_columns.html
        │      │  │  │  │      index.html
        │      │  │  │  │      jqueryui.html
        │      │  │  │  │      mouseover.html
        │      │  │  │  │      new_init.html
        │      │  │  │  │      restore.html
        │      │  │  │  │      simple.html
        │      │  │  │  │      text.html
        │      │  │  │  │      title_callback.html
        │      │  │  │  │      two_tables.html
        │      │  │  │  │      two_tables_identical.html
        │      │  │  │  │      
        │      │  │  │  └─js
        │      │  │  │          dataTables.colVis.js
        │      │  │  │          dataTables.colVis.min.js
        │      │  │  │          
        │      │  │  ├─FixedColumns
        │      │  │  │  │  License.txt
        │      │  │  │  │  Readme.md
        │      │  │  │  │  
        │      │  │  │  ├─css
        │      │  │  │  │      dataTables.fixedColumns.css
        │      │  │  │  │      dataTables.fixedColumns.min.css
        │      │  │  │  │      
        │      │  │  │  ├─examples
        │      │  │  │  │      bootstrap.html
        │      │  │  │  │      colvis.html
        │      │  │  │  │      col_filter.html
        │      │  │  │  │      css_size.html
        │      │  │  │  │      index.html
        │      │  │  │  │      index_column.html
        │      │  │  │  │      left_right_columns.html
        │      │  │  │  │      right_column.html
        │      │  │  │  │      rowspan.html
        │      │  │  │  │      server-side-processing.html
        │      │  │  │  │      simple.html
        │      │  │  │  │      size_fixed.html
        │      │  │  │  │      size_fluid.html
        │      │  │  │  │      two_columns.html
        │      │  │  │  │      
        │      │  │  │  └─js
        │      │  │  │          dataTables.fixedColumns.js
        │      │  │  │          dataTables.fixedColumns.min.js
        │      │  │  │          
        │      │  │  ├─FixedHeader
        │      │  │  │  │  Readme.txt
        │      │  │  │  │  
        │      │  │  │  ├─css
        │      │  │  │  │      dataTables.fixedHeader.css
        │      │  │  │  │      dataTables.fixedHeader.min.css
        │      │  │  │  │      
        │      │  │  │  ├─examples
        │      │  │  │  │      header_footer.html
        │      │  │  │  │      index.html
        │      │  │  │  │      simple.html
        │      │  │  │  │      top_left_right.html
        │      │  │  │  │      two_tables.html
        │      │  │  │  │      zIndexes.html
        │      │  │  │  │      
        │      │  │  │  └─js
        │      │  │  │          dataTables.fixedHeader.js
        │      │  │  │          dataTables.fixedHeader.min.js
        │      │  │  │          
        │      │  │  ├─KeyTable
        │      │  │  │  │  Readme.txt
        │      │  │  │  │  
        │      │  │  │  ├─css
        │      │  │  │  │      dataTables.keyTable.css
        │      │  │  │  │      dataTables.keyTable.min.css
        │      │  │  │  │      
        │      │  │  │  ├─examples
        │      │  │  │  │      events.html
        │      │  │  │  │      html.html
        │      │  │  │  │      index.html
        │      │  │  │  │      scrolling.html
        │      │  │  │  │      simple.html
        │      │  │  │  │      
        │      │  │  │  └─js
        │      │  │  │          dataTables.keyTable.js
        │      │  │  │          dataTables.keyTable.min.js
        │      │  │  │          
        │      │  │  ├─Responsive
        │      │  │  │  │  License.txt
        │      │  │  │  │  Readme.md
        │      │  │  │  │  
        │      │  │  │  ├─css
        │      │  │  │  │      dataTables.responsive.css
        │      │  │  │  │      dataTables.responsive.scss
        │      │  │  │  │      
        │      │  │  │  ├─examples
        │      │  │  │  │  │  index.html
        │      │  │  │  │  │  
        │      │  │  │  │  ├─child-rows
        │      │  │  │  │  │      column-control.html
        │      │  │  │  │  │      custom-renderer.html
        │      │  │  │  │  │      disable-child-rows.html
        │      │  │  │  │  │      index.html
        │      │  │  │  │  │      right-column.html
        │      │  │  │  │  │      whole-row-control.html
        │      │  │  │  │  │      
        │      │  │  │  │  ├─display-control
        │      │  │  │  │  │      auto.html
        │      │  │  │  │  │      classes.html
        │      │  │  │  │  │      complexHeader.html
        │      │  │  │  │  │      fixedHeader.html
        │      │  │  │  │  │      index.html
        │      │  │  │  │  │      init-classes.html
        │      │  │  │  │  │      
        │      │  │  │  │  ├─initialisation
        │      │  │  │  │  │      ajax.html
        │      │  │  │  │  │      className.html
        │      │  │  │  │  │      default.html
        │      │  │  │  │  │      index.html
        │      │  │  │  │  │      new.html
        │      │  │  │  │  │      option.html
        │      │  │  │  │  │      
        │      │  │  │  │  └─styling
        │      │  │  │  │          bootstrap.html
        │      │  │  │  │          compact.html
        │      │  │  │  │          foundation.html
        │      │  │  │  │          index.html
        │      │  │  │  │          scrolling.html
        │      │  │  │  │          
        │      │  │  │  └─js
        │      │  │  │          dataTables.responsive.js
        │      │  │  │          dataTables.responsive.min.js
        │      │  │  │          
        │      │  │  ├─Scroller
        │      │  │  │  │  Readme.txt
        │      │  │  │  │  
        │      │  │  │  ├─css
        │      │  │  │  │      dataTables.scroller.css
        │      │  │  │  │      dataTables.scroller.min.css
        │      │  │  │  │      
        │      │  │  │  ├─examples
        │      │  │  │  │  │  api_scrolling.html
        │      │  │  │  │  │  index.html
        │      │  │  │  │  │  large_js_source.html
        │      │  │  │  │  │  server-side_processing.html
        │      │  │  │  │  │  simple.html
        │      │  │  │  │  │  state_saving.html
        │      │  │  │  │  │  
        │      │  │  │  │  └─data
        │      │  │  │  │          2500.txt
        │      │  │  │  │          ssp.php
        │      │  │  │  │          
        │      │  │  │  ├─images
        │      │  │  │  │      loading-background.png
        │      │  │  │  │      
        │      │  │  │  └─js
        │      │  │  │          dataTables.scroller.js
        │      │  │  │          dataTables.scroller.min.js
        │      │  │  │          
        │      │  │  └─TableTools
        │      │  │      │  Readme.md
        │      │  │      │  
        │      │  │      ├─css
        │      │  │      │      dataTables.tableTools.css
        │      │  │      │      dataTables.tableTools.min.css
        │      │  │      │      
        │      │  │      ├─examples
        │      │  │      │      ajax.html
        │      │  │      │      alter_buttons.html
        │      │  │      │      bootstrap.html
        │      │  │      │      button_text.html
        │      │  │      │      collection.html
        │      │  │      │      defaults.html
        │      │  │      │      index.html
        │      │  │      │      jqueryui.html
        │      │  │      │      multiple_tables.html
        │      │  │      │      multi_instance.html
        │      │  │      │      new_init.html
        │      │  │      │      pdf_message.html
        │      │  │      │      plug-in.html
        │      │  │      │      select_column.html
        │      │  │      │      select_multi.html
        │      │  │      │      select_os.html
        │      │  │      │      select_single.html
        │      │  │      │      simple.html
        │      │  │      │      swf_path.html
        │      │  │      │      
        │      │  │      ├─images
        │      │  │      │  │  collection.png
        │      │  │      │  │  collection_hover.png
        │      │  │      │  │  copy.png
        │      │  │      │  │  copy_hover.png
        │      │  │      │  │  csv.png
        │      │  │      │  │  csv_hover.png
        │      │  │      │  │  pdf.png
        │      │  │      │  │  pdf_hover.png
        │      │  │      │  │  print.png
        │      │  │      │  │  print_hover.png
        │      │  │      │  │  xls.png
        │      │  │      │  │  xls_hover.png
        │      │  │      │  │  
        │      │  │      │  └─psd
        │      │  │      │          collection.psd
        │      │  │      │          copy document.psd
        │      │  │      │          file_types.psd
        │      │  │      │          printer.psd
        │      │  │      │          
        │      │  │      ├─js
        │      │  │      │      dataTables.tableTools.js
        │      │  │      │      dataTables.tableTools.min.js
        │      │  │      │      
        │      │  │      └─swf
        │      │  │              copy_csv_xls.swf
        │      │  │              copy_csv_xls_pdf.swf
        │      │  │              
        │      │  └─images
        │      │          sort_asc.png
        │      │          sort_asc_disabled.png
        │      │          sort_both.png
        │      │          sort_desc.png
        │      │          sort_desc_disabled.png
        │      │          
        │      ├─datepicker
        │      │  │  bootstrap-datepicker.js
        │      │  │  datepicker3.css
        │      │  │  
        │      │  └─locales
        │      │          bootstrap-datepicker.ar.js
        │      │          bootstrap-datepicker.az.js
        │      │          bootstrap-datepicker.bg.js
        │      │          bootstrap-datepicker.ca.js
        │      │          bootstrap-datepicker.cs.js
        │      │          bootstrap-datepicker.cy.js
        │      │          bootstrap-datepicker.da.js
        │      │          bootstrap-datepicker.de.js
        │      │          bootstrap-datepicker.el.js
        │      │          bootstrap-datepicker.es.js
        │      │          bootstrap-datepicker.et.js
        │      │          bootstrap-datepicker.fa.js
        │      │          bootstrap-datepicker.fi.js
        │      │          bootstrap-datepicker.fr.js
        │      │          bootstrap-datepicker.gl.js
        │      │          bootstrap-datepicker.he.js
        │      │          bootstrap-datepicker.hr.js
        │      │          bootstrap-datepicker.hu.js
        │      │          bootstrap-datepicker.id.js
        │      │          bootstrap-datepicker.is.js
        │      │          bootstrap-datepicker.it.js
        │      │          bootstrap-datepicker.ja.js
        │      │          bootstrap-datepicker.ka.js
        │      │          bootstrap-datepicker.kk.js
        │      │          bootstrap-datepicker.kr.js
        │      │          bootstrap-datepicker.lt.js
        │      │          bootstrap-datepicker.lv.js
        │      │          bootstrap-datepicker.mk.js
        │      │          bootstrap-datepicker.ms.js
        │      │          bootstrap-datepicker.nb.js
        │      │          bootstrap-datepicker.nl-BE.js
        │      │          bootstrap-datepicker.nl.js
        │      │          bootstrap-datepicker.no.js
        │      │          bootstrap-datepicker.pl.js
        │      │          bootstrap-datepicker.pt-BR.js
        │      │          bootstrap-datepicker.pt.js
        │      │          bootstrap-datepicker.ro.js
        │      │          bootstrap-datepicker.rs-latin.js
        │      │          bootstrap-datepicker.rs.js
        │      │          bootstrap-datepicker.ru.js
        │      │          bootstrap-datepicker.sk.js
        │      │          bootstrap-datepicker.sl.js
        │      │          bootstrap-datepicker.sq.js
        │      │          bootstrap-datepicker.sv.js
        │      │          bootstrap-datepicker.sw.js
        │      │          bootstrap-datepicker.th.js
        │      │          bootstrap-datepicker.tr.js
        │      │          bootstrap-datepicker.ua.js
        │      │          bootstrap-datepicker.vi.js
        │      │          bootstrap-datepicker.zh-CN.js
        │      │          bootstrap-datepicker.zh-TW.js
        │      │          
        │      ├─daterangepicker
        │      │      daterangepicker.css
        │      │      daterangepicker.js
        │      │      moment.js
        │      │      moment.min.js
        │      │      
        │      ├─fastclick
        │      │      fastclick.js
        │      │      fastclick.min.js
        │      │      
        │      ├─flot
        │      │      excanvas.js
        │      │      excanvas.min.js
        │      │      jquery.colorhelpers.js
        │      │      jquery.colorhelpers.min.js
        │      │      jquery.flot.canvas.js
        │      │      jquery.flot.canvas.min.js
        │      │      jquery.flot.categories.js
        │      │      jquery.flot.categories.min.js
        │      │      jquery.flot.crosshair.js
        │      │      jquery.flot.crosshair.min.js
        │      │      jquery.flot.errorbars.js
        │      │      jquery.flot.errorbars.min.js
        │      │      jquery.flot.fillbetween.js
        │      │      jquery.flot.fillbetween.min.js
        │      │      jquery.flot.image.js
        │      │      jquery.flot.image.min.js
        │      │      jquery.flot.js
        │      │      jquery.flot.min.js
        │      │      jquery.flot.navigate.js
        │      │      jquery.flot.navigate.min.js
        │      │      jquery.flot.pie.js
        │      │      jquery.flot.pie.min.js
        │      │      jquery.flot.resize.js
        │      │      jquery.flot.resize.min.js
        │      │      jquery.flot.selection.js
        │      │      jquery.flot.selection.min.js
        │      │      jquery.flot.stack.js
        │      │      jquery.flot.stack.min.js
        │      │      jquery.flot.symbol.js
        │      │      jquery.flot.symbol.min.js
        │      │      jquery.flot.threshold.js
        │      │      jquery.flot.threshold.min.js
        │      │      jquery.flot.time.js
        │      │      jquery.flot.time.min.js
        │      │      
        │      ├─fullcalendar
        │      │      fullcalendar.css
        │      │      fullcalendar.js
        │      │      fullcalendar.min.css
        │      │      fullcalendar.min.js
        │      │      fullcalendar.print.css
        │      │      
        │      ├─iCheck
        │      │  │  all.css
        │      │  │  icheck.js
        │      │  │  icheck.min.js
        │      │  │  
        │      │  ├─flat
        │      │  │      aero.css
        │      │  │      aero.png
        │      │  │      aero@2x.png
        │      │  │      blue.css
        │      │  │      blue.png
        │      │  │      blue@2x.png
        │      │  │      flat.css
        │      │  │      flat.png
        │      │  │      flat@2x.png
        │      │  │      green.css
        │      │  │      green.png
        │      │  │      green@2x.png
        │      │  │      grey.css
        │      │  │      grey.png
        │      │  │      grey@2x.png
        │      │  │      orange.css
        │      │  │      orange.png
        │      │  │      orange@2x.png
        │      │  │      pink.css
        │      │  │      pink.png
        │      │  │      pink@2x.png
        │      │  │      purple.css
        │      │  │      purple.png
        │      │  │      purple@2x.png
        │      │  │      red.css
        │      │  │      red.png
        │      │  │      red@2x.png
        │      │  │      yellow.css
        │      │  │      yellow.png
        │      │  │      yellow@2x.png
        │      │  │      _all.css
        │      │  │      
        │      │  ├─futurico
        │      │  │      futurico.css
        │      │  │      futurico.png
        │      │  │      futurico@2x.png
        │      │  │      
        │      │  ├─line
        │      │  │      aero.css
        │      │  │      blue.css
        │      │  │      green.css
        │      │  │      grey.css
        │      │  │      line.css
        │      │  │      line.png
        │      │  │      line@2x.png
        │      │  │      orange.css
        │      │  │      pink.css
        │      │  │      purple.css
        │      │  │      red.css
        │      │  │      yellow.css
        │      │  │      _all.css
        │      │  │      
        │      │  ├─minimal
        │      │  │      aero.css
        │      │  │      aero.png
        │      │  │      aero@2x.png
        │      │  │      blue.css
        │      │  │      blue.png
        │      │  │      blue@2x.png
        │      │  │      green.css
        │      │  │      green.png
        │      │  │      green@2x.png
        │      │  │      grey.css
        │      │  │      grey.png
        │      │  │      grey@2x.png
        │      │  │      minimal.css
        │      │  │      minimal.png
        │      │  │      minimal@2x.png
        │      │  │      orange.css
        │      │  │      orange.png
        │      │  │      orange@2x.png
        │      │  │      pink.css
        │      │  │      pink.png
        │      │  │      pink@2x.png
        │      │  │      purple.css
        │      │  │      purple.png
        │      │  │      purple@2x.png
        │      │  │      red.css
        │      │  │      red.png
        │      │  │      red@2x.png
        │      │  │      yellow.css
        │      │  │      yellow.png
        │      │  │      yellow@2x.png
        │      │  │      _all.css
        │      │  │      
        │      │  ├─polaris
        │      │  │      polaris.css
        │      │  │      polaris.png
        │      │  │      polaris@2x.png
        │      │  │      
        │      │  └─square
        │      │          aero.css
        │      │          aero.png
        │      │          aero@2x.png
        │      │          blue.css
        │      │          blue.png
        │      │          blue@2x.png
        │      │          green.css
        │      │          green.png
        │      │          green@2x.png
        │      │          grey.css
        │      │          grey.png
        │      │          grey@2x.png
        │      │          orange.css
        │      │          orange.png
        │      │          orange@2x.png
        │      │          pink.css
        │      │          pink.png
        │      │          pink@2x.png
        │      │          purple.css
        │      │          purple.png
        │      │          purple@2x.png
        │      │          red.css
        │      │          red.png
        │      │          red@2x.png
        │      │          square.css
        │      │          square.png
        │      │          square@2x.png
        │      │          yellow.css
        │      │          yellow.png
        │      │          yellow@2x.png
        │      │          _all.css
        │      │          
        │      ├─input-mask
        │      │  │  jquery.inputmask.date.extensions.js
        │      │  │  jquery.inputmask.extensions.js
        │      │  │  jquery.inputmask.js
        │      │  │  jquery.inputmask.numeric.extensions.js
        │      │  │  jquery.inputmask.phone.extensions.js
        │      │  │  jquery.inputmask.regex.extensions.js
        │      │  │  
        │      │  └─phone-codes
        │      │          phone-be.json
        │      │          phone-codes.json
        │      │          readme.txt
        │      │          
        │      ├─ionslider
        │      │  │  ion.rangeSlider.css
        │      │  │  ion.rangeSlider.min.js
        │      │  │  ion.rangeSlider.skinFlat.css
        │      │  │  ion.rangeSlider.skinNice.css
        │      │  │  
        │      │  └─img
        │      │          sprite-skin-flat.png
        │      │          sprite-skin-nice.png
        │      │          
        │      ├─jQuery
        │      │      jquery-2.2.3.min.js
        │      │      
        │      ├─jQueryUI
        │      │      jquery-ui.js
        │      │      jquery-ui.min.js
        │      │      
        │      ├─jvectormap
        │      │      jquery-jvectormap-1.2.2.css
        │      │      jquery-jvectormap-1.2.2.min.js
        │      │      jquery-jvectormap-usa-en.js
        │      │      jquery-jvectormap-world-mill-en.js
        │      │      
        │      ├─knob
        │      │      jquery.knob.js
        │      │      
        │      ├─morris
        │      │      morris.css
        │      │      morris.js
        │      │      morris.min.js
        │      │      
        │      ├─pace
        │      │      pace.css
        │      │      pace.js
        │      │      pace.min.css
        │      │      pace.min.js
        │      │      
        │      ├─select2
        │      │  │  select2.css
        │      │  │  select2.full.js
        │      │  │  select2.full.min.js
        │      │  │  select2.js
        │      │  │  select2.min.css
        │      │  │  select2.min.js
        │      │  │  
        │      │  └─i18n
        │      │          ar.js
        │      │          az.js
        │      │          bg.js
        │      │          ca.js
        │      │          cs.js
        │      │          da.js
        │      │          de.js
        │      │          el.js
        │      │          en.js
        │      │          es.js
        │      │          et.js
        │      │          eu.js
        │      │          fa.js
        │      │          fi.js
        │      │          fr.js
        │      │          gl.js
        │      │          he.js
        │      │          hi.js
        │      │          hr.js
        │      │          hu.js
        │      │          id.js
        │      │          is.js
        │      │          it.js
        │      │          ja.js
        │      │          km.js
        │      │          ko.js
        │      │          lt.js
        │      │          lv.js
        │      │          mk.js
        │      │          ms.js
        │      │          nb.js
        │      │          nl.js
        │      │          pl.js
        │      │          pt-BR.js
        │      │          pt.js
        │      │          ro.js
        │      │          ru.js
        │      │          sk.js
        │      │          sr-Cyrl.js
        │      │          sr.js
        │      │          sv.js
        │      │          th.js
        │      │          tr.js
        │      │          uk.js
        │      │          vi.js
        │      │          zh-CN.js
        │      │          zh-TW.js
        │      │          
        │      ├─slimScroll
        │      │      jquery.slimscroll.js
        │      │      jquery.slimscroll.min.js
        │      │      
        │      ├─sparkline
        │      │      jquery.sparkline.js
        │      │      jquery.sparkline.min.js
        │      │      
        │      └─timepicker
        │              bootstrap-timepicker.css
        │              bootstrap-timepicker.js
        │              bootstrap-timepicker.min.css
        │              bootstrap-timepicker.min.js
        │              
        └─WEB-INF
            │  web.xml
            │  
            ├─admin
            │      accOrder.jsp
            │      addGoods.jsp
            │      addGoodsType.jsp
            │      addOrder.jsp
            │      addPerson.jsp
            │      changePage.jsp
            │      computer.html
            │      default.html
            │      editGoods.jsp
            │      editGoodsType.jsp
            │      editOrder.jsp
            │      editPerson.jsp
            │      error.jsp
            │      filelist.html
            │      forgetPwd.jsp
            │      gList.jsp
            │      gtList.jsp
            │      imglist.html
            │      imglist1.html
            │      imgtable.html
            │      index.jsp
            │      left.jsp
            │      login.html
            │      main.html  是主页.txt
            │      main.jsp
            │      orderList.jsp
            │      pList.jsp
            │      success.jsp
            │      tab.html
            │      tools.html
            │      top.jsp
            │      
            ├─lib
            │      activation-1.1.jar
            │      aopalliance-1.0.jar
            │      classmate-1.3.1.jar
            │      common-swaggerui-0.0.1-SNAPSHOT.jar
            │      commons-beanutils-1.8.0.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-io-2.4.jar
            │      commons-lang-2.5.jar
            │      commons-logging-1.1.3.jar
            │      commons-pool-1.3.jar
            │      disruptor-3.3.4.jar
            │      ezmorph-1.0.6.jar
            │      fastjson-1.1.41.jar
            │      freemarker-2.3.8.jar
            │      guava-18.0.jar
            │      hamcrest-core-1.3.jar
            │      hibernate-validator-5.2.4.Final.jar
            │      jackson-annotations-2.8.5.jar
            │      jackson-core-2.8.5.jar
            │      jackson-core-asl-1.9.13.jar
            │      jackson-databind-2.8.5.jar
            │      jackson-dataformat-yaml-2.8.5.jar
            │      jackson-mapper-asl-1.9.13.jar
            │      javaee-api-7.0.jar
            │      javax.mail-1.5.0.jar
            │      jboss-logging-3.2.1.Final.jar
            │      jcl-over-slf4j-1.7.21.jar
            │      json-lib-2.4-jdk15.jar
            │      jstl-1.2.jar
            │      jul-to-slf4j-1.7.21.jar
            │      junit-4.11.jar
            │      log4j-1.2.17.jar
            │      log4j-api-2.6.2.jar
            │      log4j-core-2.6.2.jar
            │      log4j-slf4j-impl-2.6.2.jar
            │      mapstruct-1.0.0.Final.jar
            │      mybatis-3.2.6.jar
            │      mybatis-spring-1.2.2.jar
            │      mysql-connector-java-5.1.30.jar
            │      slf4j-api-1.7.7.jar
            │      slf4j-log4j12-1.7.7.jar
            │      snakeyaml-1.17.jar
            │      spring-aop-4.0.2.RELEASE.jar
            │      spring-beans-4.0.2.RELEASE.jar
            │      spring-boot-1.4.1.RELEASE.jar
            │      spring-boot-autoconfigure-1.4.1.RELEASE.jar
            │      spring-boot-starter-1.4.1.RELEASE.jar
            │      spring-boot-starter-log4j2-1.4.1.RELEASE.jar
            │      spring-boot-starter-web-1.4.1.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-plugin-core-1.2.0.RELEASE.jar
            │      spring-plugin-metadata-1.2.0.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
            │      validation-api-1.1.0.Final.jar
            │      
            ├─pre
            │  │  .gitignore
            │  │  bower.json
            │  │  center.jsp
            │  │  circliful.jquery.json
            │  │  comment.jsp
            │  │  detailForm.jsp
            │  │  detailList.jsp
            │  │  index.jsp
            │  │  login.jsp
            │  │  reg.jsp
            │  │  resetPsw.jsp
            │  │  storeEdit.jsp
            │  │  storeForm.jsp
            │  │  storeList.jsp
            │  │  storeView.jsp
            │  │  userInfo.jsp
            │  │  
            │  └─common
            │          footer.jsp
            │          header.jsp
            │          menu.jsp
            │          page.jsp
            │          static.jsp
            │          
            └─user
                    accOrder.jsp
                    addOrder.jsp
                    computer.html
                    default.html
                    delOrderList.jsp
                    editOrder.jsp
                    error.jsp
                    filelist.html
                    forgetPwd.jsp
                    imglist.html
                    imglist1.html
                    imgtable.html
                    index.jsp
                    left.jsp
                    login.html
                    main.html  是主页.txt
                    main.jsp
                    orderList.jsp
                    success.jsp
                    tab.html
                    tools.html
                    top.jsp
                    

目  录
1 系统概述    4
1.1 研究背景和意义    4
1.2 研究的现状    4
1.3 系统设计思想    5
2 技术介绍    6
2.1 SSM概述    6
2.2 动态网站技术介绍    7
2.3 数据库技术    7
3 需求分析    8
3.1可行性分析    8
3.1.1 技术可行性    8
3.1.2 运行可行性    8
3.1.3 时间可行性    8
3.2系统流程和逻辑    9
4系统概要设计    12
4.1 概述    12
3.2 系统结构    12
4.3. 数据库设计    13
5系统详细设计    16
5.1 登录页面    16
5.2 商品类别管理    17
5.3 订单信息管理管理    18
5.4 用户信息管理    19
5.5商品信息管理    20
5.6修改密码    20
第6章 系统测试    22
6.1 SSM订单管理系统的测试目的    22
6.2 SSM订单管理系统的测试方法    22
6.3 SSM订单管理系统的测试特列    22
6.4 SSM订单管理系统的系统测试结果    23
第6章 总结    27
致谢语    28
参考文献    29


标签:采购订单管理系统,在线订单管理系统,采购管理系统

  • 专注毕业设计源码作品
  • 毕业设计源码论文全套
  • 每件作品均测试后上线
  • 提供所有教程和软件下载

Copyright © 2008-2025 jsjbysjw.com . All Rights Reserved. 备案号:苏ICP备2021056683号-4

  • 联系QQ:81677093
  • 微信:bysj1950