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

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

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

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

  • 作品介绍
  • 项目目录

登陆:每个家庭成员都有一个自己的子账户,通过子账户登陆自己的理财管理系统,口令不正确是禁止登陆的。

支出管理:每个家庭成员都可以查看自己的支出明细,了解自己的开销主要用了多少钱,用在了哪里。便于管理。

收入管理:每个家庭成员都可以对自己的收入进行管理,每月进帐多少钱。

统计功能:每个家庭成员都可以统计某个月的所有开销花费和收入信息,了解自己的花费是不是处理负状态。

修改密码:每个成员都可以修改自己的管理密码。

退出:在离开的时候可以点击退出系统,这样可以确认自己的隐私不会外泄。

 

户主:

登陆:户主拥有最高权限,并且只有一个,登陆的时候必须要验证户主的口令,登陆进去之后所有的所有菜单权限和子账户是完全不一样的。

家庭成员管理:户主可以管理家庭里面的所有成员,可以对成员进行添加,修改和删除操作。

开支查看:户主可以查看每个成员的开支情况记录。

收入查看:户主可以查看每个成员的收入情况记录。

开支统计:户主可以统计每个家庭成员每个月用了多少,形成鲜明的对比。并了解家庭一个月的开支花费总额。

收入统计:户主可以统计每个家庭成员每个月收入了多少,并统计家庭所有成员一个月收入总额。

支出类型管理:管理员可以对支出类型进行添加,修改和删除操作。便于家庭成员操作。

收入类型管理:管理员可以对收入类型进行添加,修改,删除操作,家庭成员收入的操作更灵活。


N065基于SSM的家庭理财管理系统的设计与实现N065基于SSM的家庭理财管理系统的设计与实现N065基于SSM的家庭理财管理系统的设计与实现N065基于SSM的家庭理财管理系统的设计与实现N065基于SSM的家庭理财管理系统的设计与实现N065基于SSM的家庭理财管理系统的设计与实现N065基于SSM的家庭理财管理系统的设计与实现
卷 软件 的文件夹 PATH 列表
卷序列号为 0008-B552
D:\TEST\源码
└─ffms
    │  .classpath
    │  .project
    │  pom.xml
    │  注意事项.txt
    │  
    ├─.settings
    │      .jsdtscope
    │      org.eclipse.jdt.core.prefs
    │      org.eclipse.m2e.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
    │      org.eclipse.wst.validation.prefs
    │      
    ├─src
    │  │  ffms.sql
    │  │  
    │  ├─main
    │  │  ├─java
    │  │  │  └─com
    │  │  │      └─finance
    │  │  │          ├─controller
    │  │  │          │      DatabaseController.java
    │  │  │          │      DatadicController.java
    │  │  │          │      IncomeController.java
    │  │  │          │      PayController.java
    │  │  │          │      ProduceController.java
    │  │  │          │      RoleController.java
    │  │  │          │      SecurityController.java
    │  │  │          │      SharesController.java
    │  │  │          │      TradeController.java
    │  │  │          │      UserController.java
    │  │  │          │      
    │  │  │          ├─core
    │  │  │          │  └─des
    │  │  │          │          DESUtils.java
    │  │  │          │          EncryptPropertyPlaceholderConfigurer.java
    │  │  │          │          
    │  │  │          ├─dao
    │  │  │          │      DatabaseDao.java
    │  │  │          │      DatadicDao.java
    │  │  │          │      IncomeDao.java
    │  │  │          │      PayDao.java
    │  │  │          │      RoleDao.java
    │  │  │          │      SecurityDao.java
    │  │  │          │      SharesDao.java
    │  │  │          │      TradeDao.java
    │  │  │          │      UserDao.java
    │  │  │          │      
    │  │  │          ├─entity
    │  │  │          │      Database.java
    │  │  │          │      Datadic.java
    │  │  │          │      Income.java
    │  │  │          │      PageBean.java
    │  │  │          │      Pay.java
    │  │  │          │      Role.java
    │  │  │          │      Security.java
    │  │  │          │      Shares.java
    │  │  │          │      Trade.java
    │  │  │          │      User.java
    │  │  │          │      
    │  │  │          ├─exception
    │  │  │          │      ExceptionHandler.java
    │  │  │          │      
    │  │  │          ├─filter
    │  │  │          │      SessionFilter.java
    │  │  │          │      
    │  │  │          ├─service
    │  │  │          │  │  DatabaseService.java
    │  │  │          │  │  DatadicService.java
    │  │  │          │  │  IncomeService.java
    │  │  │          │  │  PayService.java
    │  │  │          │  │  RoleService.java
    │  │  │          │  │  SecurityService.java
    │  │  │          │  │  SharesService.java
    │  │  │          │  │  TradeService.java
    │  │  │          │  │  UserService.java
    │  │  │          │  │  
    │  │  │          │  └─impl
    │  │  │          │          DatabaseServiceImpl.java
    │  │  │          │          DatadicServiceImpl.java
    │  │  │          │          IncomeServiceImpl.java
    │  │  │          │          PayServiceImpl.java
    │  │  │          │          RoleServiceImpl.java
    │  │  │          │          SecurityServiceImpl.java
    │  │  │          │          SharesServiceImpl.java
    │  │  │          │          TradeServiceImpl.java
    │  │  │          │          UserServiceImpl.java
    │  │  │          │          
    │  │  │          └─util
    │  │  │                  Base64Util.java
    │  │  │                  Constants.java
    │  │  │                  CurrentConn.java
    │  │  │                  DateUtil.java
    │  │  │                  MD5Util.java
    │  │  │                  ResponseUtil.java
    │  │  │                  SpringUtil.java
    │  │  │                  StringUtil.java
    │  │  │                  
    │  │  ├─resources
    │  │  │  │  applicationContext-myBatis.xml
    │  │  │  │  applicationContext.xml
    │  │  │  │  db.properties
    │  │  │  │  log4j.properties
    │  │  │  │  mybatis-config.xml
    │  │  │  │  springmvc.xml
    │  │  │  │  
    │  │  │  ├─doc
    │  │  │  │      ffms.sql
    │  │  │  │      
    │  │  │  └─mappers
    │  │  │          DatabaseMapper.xml
    │  │  │          DatadicMapper.xml
    │  │  │          IncomeMapper.xml
    │  │  │          PayMapper.xml
    │  │  │          RoleMapper.xml
    │  │  │          SecurityMapper.xml
    │  │  │          SharesMapper.xml
    │  │  │          TradeMapper.xml
    │  │  │          UserMapper.xml
    │  │  │          
    │  │  └─webapp
    │  │      ├─bootstrap
    │  │      │  ├─css
    │  │      │  │      bootstrap-reset.css
    │  │      │  │      bootstrap.min.css
    │  │      │  │      font-awesome.css
    │  │      │  │      jquery-ui-1.10.3.css
    │  │      │  │      
    │  │      │  ├─fonts
    │  │      │  │      fontawesome-webfont.eot
    │  │      │  │      fontawesome-webfont.svg
    │  │      │  │      fontawesome-webfont.ttf
    │  │      │  │      fontawesome-webfont.woff
    │  │      │  │      fontawesome-webfont.woff2
    │  │      │  │      FontAwesome.otf
    │  │      │  │      
    │  │      │  └─js
    │  │      │          bootstrap.min.js
    │  │      │          modernizr.min.js
    │  │      │          
    │  │      ├─Highcharts-5.0.12
    │  │      │  │  index.htm
    │  │      │  │  
    │  │      │  ├─api
    │  │      │  │  │  highcharts.html
    │  │      │  │  │  
    │  │      │  │  ├─css
    │  │      │  │  │  │  api.css
    │  │      │  │  │  │  font-awesome.min.css
    │  │      │  │  │  │  jquery-ui.min.css
    │  │      │  │  │  │  jquery.sidr.bare.css
    │  │      │  │  │  │  
    │  │      │  │  │  └─images
    │  │      │  │  ├─fonts
    │  │      │  │  │      fontawesome-webfont.woff
    │  │      │  │  │      fontawesome-webfont.woff2
    │  │      │  │  │      
    │  │      │  │  ├─images
    │  │      │  │  │      apple-touch-icon-114x114.png
    │  │      │  │  │      apple-touch-icon-120x120.png
    │  │      │  │  │      apple-touch-icon-144x144.png
    │  │      │  │  │      apple-touch-icon-152x152.png
    │  │      │  │  │      apple-touch-icon-180x180.png
    │  │      │  │  │      apple-touch-icon-57x57.png
    │  │      │  │  │      apple-touch-icon-60x60.png
    │  │      │  │  │      apple-touch-icon-72x72.png
    │  │      │  │  │      apple-touch-icon-76x76.png
    │  │      │  │  │      favicon-160x160.png
    │  │      │  │  │      favicon-16x16.png
    │  │      │  │  │      favicon-192x192.png
    │  │      │  │  │      favicon-32x32.png
    │  │      │  │  │      favicon-96x96.png
    │  │      │  │  │      Highcharts.svg
    │  │      │  │  │      sprite.png
    │  │      │  │  │      
    │  │      │  │  └─js
    │  │      │  │          api.js
    │  │      │  │          highcharts.json
    │  │      │  │          jquery-1.11.3.min.js
    │  │      │  │          jquery-ui.min.js
    │  │      │  │          jquery.sidr.min.js
    │  │      │  │          
    │  │      │  ├─code
    │  │      │  │  │  highcharts-3d.js
    │  │      │  │  │  highcharts-3d.js.map
    │  │      │  │  │  highcharts-3d.src.js
    │  │      │  │  │  highcharts-more.js
    │  │      │  │  │  highcharts-more.js.map
    │  │      │  │  │  highcharts-more.src.js
    │  │      │  │  │  highcharts-zh_CN.js
    │  │      │  │  │  highcharts.js
    │  │      │  │  │  highcharts.js.map
    │  │      │  │  │  highcharts.src.js
    │  │      │  │  │  highmaps.js.map
    │  │      │  │  │  highstock.js.map
    │  │      │  │  │  readme.txt
    │  │      │  │  │  
    │  │      │  │  ├─css
    │  │      │  │  │      highcharts.css
    │  │      │  │  │      
    │  │      │  │  ├─js
    │  │      │  │  │  │  highcharts-3d.js
    │  │      │  │  │  │  highcharts-3d.js.map
    │  │      │  │  │  │  highcharts-3d.src.js
    │  │      │  │  │  │  highcharts-more.js
    │  │      │  │  │  │  highcharts-more.js.map
    │  │      │  │  │  │  highcharts-more.src.js
    │  │      │  │  │  │  highcharts.js
    │  │      │  │  │  │  highcharts.js.map
    │  │      │  │  │  │  highcharts.src.js
    │  │      │  │  │  │  highmaps.js.map
    │  │      │  │  │  │  highstock.js.map
    │  │      │  │  │  │  
    │  │      │  │  │  ├─modules
    │  │      │  │  │  │      accessibility.js
    │  │      │  │  │  │      accessibility.js.map
    │  │      │  │  │  │      accessibility.src.js
    │  │      │  │  │  │      annotations.js
    │  │      │  │  │  │      annotations.js.map
    │  │      │  │  │  │      annotations.src.js
    │  │      │  │  │  │      boost-canvas.js
    │  │      │  │  │  │      boost-canvas.js.map
    │  │      │  │  │  │      boost-canvas.src.js
    │  │      │  │  │  │      boost.js
    │  │      │  │  │  │      boost.js.map
    │  │      │  │  │  │      boost.src.js
    │  │      │  │  │  │      broken-axis.js
    │  │      │  │  │  │      broken-axis.js.map
    │  │      │  │  │  │      broken-axis.src.js
    │  │      │  │  │  │      canvasrenderer.experimental.js.map
    │  │      │  │  │  │      data.js
    │  │      │  │  │  │      data.js.map
    │  │      │  │  │  │      data.src.js
    │  │      │  │  │  │      drilldown.js
    │  │      │  │  │  │      drilldown.js.map
    │  │      │  │  │  │      drilldown.src.js
    │  │      │  │  │  │      export-data.js
    │  │      │  │  │  │      export-data.js.map
    │  │      │  │  │  │      export-data.src.js
    │  │      │  │  │  │      exporting.js
    │  │      │  │  │  │      exporting.js.map
    │  │      │  │  │  │      exporting.src.js
    │  │      │  │  │  │      funnel.js
    │  │      │  │  │  │      funnel.js.map
    │  │      │  │  │  │      funnel.src.js
    │  │      │  │  │  │      gantt.js
    │  │      │  │  │  │      gantt.js.map
    │  │      │  │  │  │      gantt.src.js
    │  │      │  │  │  │      grid-axis.js
    │  │      │  │  │  │      grid-axis.js.map
    │  │      │  │  │  │      grid-axis.src.js
    │  │      │  │  │  │      heatmap.js
    │  │      │  │  │  │      heatmap.js.map
    │  │      │  │  │  │      heatmap.src.js
    │  │      │  │  │  │      map-parser.js.map
    │  │      │  │  │  │      map.js.map
    │  │      │  │  │  │      no-data-to-display.js
    │  │      │  │  │  │      no-data-to-display.js.map
    │  │      │  │  │  │      no-data-to-display.src.js
    │  │      │  │  │  │      offline-exporting.js
    │  │      │  │  │  │      offline-exporting.js.map
    │  │      │  │  │  │      offline-exporting.src.js
    │  │      │  │  │  │      overlapping-datalabels.js
    │  │      │  │  │  │      overlapping-datalabels.js.map
    │  │      │  │  │  │      overlapping-datalabels.src.js
    │  │      │  │  │  │      series-label.js
    │  │      │  │  │  │      series-label.js.map
    │  │      │  │  │  │      series-label.src.js
    │  │      │  │  │  │      solid-gauge.js
    │  │      │  │  │  │      solid-gauge.js.map
    │  │      │  │  │  │      solid-gauge.src.js
    │  │      │  │  │  │      static-scale.js
    │  │      │  │  │  │      static-scale.js.map
    │  │      │  │  │  │      static-scale.src.js
    │  │      │  │  │  │      stock.js
    │  │      │  │  │  │      stock.js.map
    │  │      │  │  │  │      stock.src.js
    │  │      │  │  │  │      treemap.js
    │  │      │  │  │  │      treemap.js.map
    │  │      │  │  │  │      treemap.src.js
    │  │      │  │  │  │      xrange-series.js
    │  │      │  │  │  │      xrange-series.js.map
    │  │      │  │  │  │      xrange-series.src.js
    │  │      │  │  │  │      
    │  │      │  │  │  └─themes
    │  │      │  │  │          dark-blue.js
    │  │      │  │  │          dark-green.js
    │  │      │  │  │          dark-unica.js
    │  │      │  │  │          gray.js
    │  │      │  │  │          grid-light.js
    │  │      │  │  │          grid.js
    │  │      │  │  │          sand-signika.js
    │  │      │  │  │          skies.js
    │  │      │  │  │          
    │  │      │  │  ├─lib
    │  │      │  │  │      canvg.js
    │  │      │  │  │      canvg.src.js
    │  │      │  │  │      jspdf.js
    │  │      │  │  │      jspdf.src.js
    │  │      │  │  │      rgbcolor.js
    │  │      │  │  │      rgbcolor.src.js
    │  │      │  │  │      svg2pdf.js
    │  │      │  │  │      svg2pdf.src.js
    │  │      │  │  │      
    │  │      │  │  ├─modules
    │  │      │  │  │      accessibility.js
    │  │      │  │  │      accessibility.js.map
    │  │      │  │  │      accessibility.src.js
    │  │      │  │  │      annotations.js
    │  │      │  │  │      annotations.js.map
    │  │      │  │  │      annotations.src.js
    │  │      │  │  │      boost-canvas.js
    │  │      │  │  │      boost-canvas.js.map
    │  │      │  │  │      boost-canvas.src.js
    │  │      │  │  │      boost.js
    │  │      │  │  │      boost.js.map
    │  │      │  │  │      boost.src.js
    │  │      │  │  │      broken-axis.js
    │  │      │  │  │      broken-axis.js.map
    │  │      │  │  │      broken-axis.src.js
    │  │      │  │  │      canvasrenderer.experimental.js.map
    │  │      │  │  │      data.js
    │  │      │  │  │      data.js.map
    │  │      │  │  │      data.src.js
    │  │      │  │  │      drilldown.js
    │  │      │  │  │      drilldown.js.map
    │  │      │  │  │      drilldown.src.js
    │  │      │  │  │      export-data.js
    │  │      │  │  │      export-data.js.map
    │  │      │  │  │      export-data.src.js
    │  │      │  │  │      exporting.js
    │  │      │  │  │      exporting.js.map
    │  │      │  │  │      exporting.src.js
    │  │      │  │  │      funnel.js
    │  │      │  │  │      funnel.js.map
    │  │      │  │  │      funnel.src.js
    │  │      │  │  │      gantt.js
    │  │      │  │  │      gantt.js.map
    │  │      │  │  │      gantt.src.js
    │  │      │  │  │      grid-axis.js
    │  │      │  │  │      grid-axis.js.map
    │  │      │  │  │      grid-axis.src.js
    │  │      │  │  │      heatmap.js
    │  │      │  │  │      heatmap.js.map
    │  │      │  │  │      heatmap.src.js
    │  │      │  │  │      map-parser.js.map
    │  │      │  │  │      map.js.map
    │  │      │  │  │      no-data-to-display.js
    │  │      │  │  │      no-data-to-display.js.map
    │  │      │  │  │      no-data-to-display.src.js
    │  │      │  │  │      offline-exporting.js
    │  │      │  │  │      offline-exporting.js.map
    │  │      │  │  │      offline-exporting.src.js
    │  │      │  │  │      overlapping-datalabels.js
    │  │      │  │  │      overlapping-datalabels.js.map
    │  │      │  │  │      overlapping-datalabels.src.js
    │  │      │  │  │      series-label.js
    │  │      │  │  │      series-label.js.map
    │  │      │  │  │      series-label.src.js
    │  │      │  │  │      solid-gauge.js
    │  │      │  │  │      solid-gauge.js.map
    │  │      │  │  │      solid-gauge.src.js
    │  │      │  │  │      static-scale.js
    │  │      │  │  │      static-scale.js.map
    │  │      │  │  │      static-scale.src.js
    │  │      │  │  │      stock.js
    │  │      │  │  │      stock.js.map
    │  │      │  │  │      stock.src.js
    │  │      │  │  │      treemap.js
    │  │      │  │  │      treemap.js.map
    │  │      │  │  │      treemap.src.js
    │  │      │  │  │      xrange-series.js
    │  │      │  │  │      xrange-series.js.map
    │  │      │  │  │      xrange-series.src.js
    │  │      │  │  │      
    │  │      │  │  └─themes
    │  │      │  │          dark-blue.js
    │  │      │  │          dark-green.js
    │  │      │  │          dark-unica.js
    │  │      │  │          gray.js
    │  │      │  │          grid-light.js
    │  │      │  │          grid.js
    │  │      │  │          sand-signika.js
    │  │      │  │          skies.js
    │  │      │  │          
    │  │      │  ├─examples
    │  │      │  │  ├─3d-column-interactive
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─3d-column-null-values
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─3d-column-stacking-grouping
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─3d-pie
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─3d-pie-donut
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─3d-scatter-draggable
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─area-basic
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─area-inverted
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─area-missing
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─area-negative
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─area-stacked
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─area-stacked-percent
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─arearange
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─arearange-line
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─areaspline
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─bar-basic
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─bar-negative-stack
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─bar-stacked
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─box-plot
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─bubble
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─bubble-3d
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─chart-update
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-basic
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-drilldown
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-negative
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-parsed
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-placement
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-rotated-labels
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-stacked
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-stacked-and-grouped
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─column-stacked-percent
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─columnrange
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─combo
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─combo-dual-axes
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─combo-histogram
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─combo-meteogram
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─combo-multi-axes
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─combo-regression
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─combo-timeline
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─dynamic-click-to-add
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─dynamic-master-detail
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─dynamic-update
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─error-bar
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─funnel
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─gauge-activity
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─gauge-clock
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─gauge-dual
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─gauge-solid
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─gauge-speedometer
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─gauge-vu-meter
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─heatmap
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─heatmap-canvas
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─line-ajax
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─line-basic
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─line-labels
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─line-log-axis
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─line-time-series
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─pie-basic
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─pie-donut
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─pie-drilldown
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─pie-gradient
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─pie-legend
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─pie-monochrome
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─pie-semi-circle
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─polar
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─polar-spider
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─polar-wind-rose
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─polygon
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─pyramid
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─renderer
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─responsive
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─scatter
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─sparkline
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─spline-inverted
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─spline-irregular-time
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─spline-plot-bands
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─spline-symbols
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─synchronized-charts
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─treemap-coloraxis
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─treemap-large-dataset
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  ├─treemap-with-levels
    │  │      │  │  │      index.htm
    │  │      │  │  │      
    │  │      │  │  └─waterfall
    │  │      │  │          index.htm
    │  │      │  │          
    │  │      │  ├─gfx
    │  │      │  │      vml-radial-gradient.png
    │  │      │  │      
    │  │      │  └─graphics
    │  │      │          earth.svg
    │  │      │          meteogram-symbols-30px.png
    │  │      │          search.png
    │  │      │          skies.jpg
    │  │      │          snow.png
    │  │      │          sun.png
    │  │      │          
    │  │      ├─jquery-easyui-1.3.3
    │  │      │  │  changelog.txt
    │  │      │  │  easyloader.js
    │  │      │  │  jquery.cookie.js
    │  │      │  │  jquery.easyui.min.js
    │  │      │  │  jquery.edatagrid.js
    │  │      │  │  jquery.min.js
    │  │      │  │  licence_gpl.txt
    │  │      │  │  license_commercial.txt
    │  │      │  │  readme.txt
    │  │      │  │  
    │  │      │  ├─demo
    │  │      │  │  │  demo.css
    │  │      │  │  │  
    │  │      │  │  ├─accordion
    │  │      │  │  │      actions.html
    │  │      │  │  │      ajax.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      datagrid_data1.json
    │  │      │  │  │      tools.html
    │  │      │  │  │      _content.html
    │  │      │  │  │      
    │  │      │  │  ├─calendar
    │  │      │  │  │      basic.html
    │  │      │  │  │      firstday.html
    │  │      │  │  │      
    │  │      │  │  ├─combo
    │  │      │  │  │      basic.html
    │  │      │  │  │      
    │  │      │  │  ├─combobox
    │  │      │  │  │      actions.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      combobox_data1.json
    │  │      │  │  │      customformat.html
    │  │      │  │  │      dynamicdata.html
    │  │      │  │  │      multiple.html
    │  │      │  │  │      navigation.html
    │  │      │  │  │      remotedata.html
    │  │      │  │  │      remotejsonp.html
    │  │      │  │  │      
    │  │      │  │  ├─combogrid
    │  │      │  │  │      actions.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      datagrid_data1.json
    │  │      │  │  │      initvalue.html
    │  │      │  │  │      multiple.html
    │  │      │  │  │      navigation.html
    │  │      │  │  │      
    │  │      │  │  ├─combotree
    │  │      │  │  │      actions.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      initvalue.html
    │  │      │  │  │      multiple.html
    │  │      │  │  │      tree_data1.json
    │  │      │  │  │      
    │  │      │  │  ├─datagrid
    │  │      │  │  │      aligncolumns.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      cellstyle.html
    │  │      │  │  │      checkbox.html
    │  │      │  │  │      clientpagination.html
    │  │      │  │  │      columngroup.html
    │  │      │  │  │      complextoolbar.html
    │  │      │  │  │      contextmenu.html
    │  │      │  │  │      custompager.html
    │  │      │  │  │      datagrid_data1.json
    │  │      │  │  │      datagrid_data2.json
    │  │      │  │  │      footer.html
    │  │      │  │  │      formatcolumns.html
    │  │      │  │  │      frozencolumns.html
    │  │      │  │  │      frozenrows.html
    │  │      │  │  │      mergecells.html
    │  │      │  │  │      products.json
    │  │      │  │  │      rowborder.html
    │  │      │  │  │      rowediting.html
    │  │      │  │  │      rowstyle.html
    │  │      │  │  │      selection.html
    │  │      │  │  │      simpletoolbar.html
    │  │      │  │  │      transform.html
    │  │      │  │  │      
    │  │      │  │  ├─datebox
    │  │      │  │  │      basic.html
    │  │      │  │  │      dateformat.html
    │  │      │  │  │      events.html
    │  │      │  │  │      validate.html
    │  │      │  │  │      
    │  │      │  │  ├─datetimebox
    │  │      │  │  │      basic.html
    │  │      │  │  │      initvalue.html
    │  │      │  │  │      showseconds.html
    │  │      │  │  │      
    │  │      │  │  ├─dialog
    │  │      │  │  │      basic.html
    │  │      │  │  │      complextoolbar.html
    │  │      │  │  │      toolbarbuttons.html
    │  │      │  │  │      
    │  │      │  │  ├─draggable
    │  │      │  │  │      basic.html
    │  │      │  │  │      constain.html
    │  │      │  │  │      snap.html
    │  │      │  │  │      
    │  │      │  │  ├─droppable
    │  │      │  │  │      accept.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      sort.html
    │  │      │  │  │      
    │  │      │  │  ├─easyloader
    │  │      │  │  │      basic.html
    │  │      │  │  │      
    │  │      │  │  ├─form
    │  │      │  │  │      basic.html
    │  │      │  │  │      form_data1.json
    │  │      │  │  │      load.html
    │  │      │  │  │      
    │  │      │  │  ├─layout
    │  │      │  │  │      addremove.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      complex.html
    │  │      │  │  │      datagrid_data1.json
    │  │      │  │  │      full.html
    │  │      │  │  │      nestedlayout.html
    │  │      │  │  │      nocollapsible.html
    │  │      │  │  │      propertygrid_data1.json
    │  │      │  │  │      tree_data1.json
    │  │      │  │  │      _content.html
    │  │      │  │  │      
    │  │      │  │  ├─linkbutton
    │  │      │  │  │      basic.html
    │  │      │  │  │      group.html
    │  │      │  │  │      iconalign.html
    │  │      │  │  │      plain.html
    │  │      │  │  │      toggle.html
    │  │      │  │  │      
    │  │      │  │  ├─menu
    │  │      │  │  │      basic.html
    │  │      │  │  │      customitem.html
    │  │      │  │  │      events.html
    │  │      │  │  │      
    │  │      │  │  ├─menubutton
    │  │      │  │  │      actions.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      
    │  │      │  │  ├─messager
    │  │      │  │  │      alert.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      interactive.html
    │  │      │  │  │      position.html
    │  │      │  │  │      
    │  │      │  │  ├─numberbox
    │  │      │  │  │      basic.html
    │  │      │  │  │      format.html
    │  │      │  │  │      range.html
    │  │      │  │  │      
    │  │      │  │  ├─numberspinner
    │  │      │  │  │      basic.html
    │  │      │  │  │      increment.html
    │  │      │  │  │      range.html
    │  │      │  │  │      
    │  │      │  │  ├─pagination
    │  │      │  │  │      basic.html
    │  │      │  │  │      custombuttons.html
    │  │      │  │  │      simple.html
    │  │      │  │  │      
    │  │      │  │  ├─panel
    │  │      │  │  │      basic.html
    │  │      │  │  │      customtools.html
    │  │      │  │  │      loadcontent.html
    │  │      │  │  │      nestedpanel.html
    │  │      │  │  │      paneltools.html
    │  │      │  │  │      _content.html
    │  │      │  │  │      
    │  │      │  │  ├─progressbar
    │  │      │  │  │      basic.html
    │  │      │  │  │      
    │  │      │  │  ├─propertygrid
    │  │      │  │  │      basic.html
    │  │      │  │  │      customcolumns.html
    │  │      │  │  │      groupformat.html
    │  │      │  │  │      propertygrid_data1.json
    │  │      │  │  │      
    │  │      │  │  ├─resizable
    │  │      │  │  │      basic.html
    │  │      │  │  │      
    │  │      │  │  ├─searchbox
    │  │      │  │  │      basic.html
    │  │      │  │  │      category.html
    │  │      │  │  │      
    │  │      │  │  ├─slider
    │  │      │  │  │      basic.html
    │  │      │  │  │      formattip.html
    │  │      │  │  │      rule.html
    │  │      │  │  │      vertical.html
    │  │      │  │  │      
    │  │      │  │  ├─splitbutton
    │  │      │  │  │      actions.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      
    │  │      │  │  ├─tabs
    │  │      │  │  │      autoheight.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      hover.html
    │  │      │  │  │      nestedtabs.html
    │  │      │  │  │      striptools.html
    │  │      │  │  │      tabposition.html
    │  │      │  │  │      tabstools.html
    │  │      │  │  │      tree_data1.json
    │  │      │  │  │      _content.html
    │  │      │  │  │      
    │  │      │  │  ├─timespinner
    │  │      │  │  │      actions.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      range.html
    │  │      │  │  │      
    │  │      │  │  ├─tooltip
    │  │      │  │  │      ajax.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      customcontent.html
    │  │      │  │  │      customstyle.html
    │  │      │  │  │      position.html
    │  │      │  │  │      toolbar.html
    │  │      │  │  │      tooltipdialog.html
    │  │      │  │  │      _content.html
    │  │      │  │  │      _dialog.html
    │  │      │  │  │      
    │  │      │  │  ├─tree
    │  │      │  │  │      actions.html
    │  │      │  │  │      animation.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      checkbox.html
    │  │      │  │  │      contextmenu.html
    │  │      │  │  │      dnd.html
    │  │      │  │  │      editable.html
    │  │      │  │  │      icons.html
    │  │      │  │  │      lines.html
    │  │      │  │  │      tree_data1.json
    │  │      │  │  │      tree_data2.json
    │  │      │  │  │      
    │  │      │  │  ├─treegrid
    │  │      │  │  │      actions.html
    │  │      │  │  │      basic.html
    │  │      │  │  │      clientpagination.html
    │  │      │  │  │      contextmenu.html
    │  │      │  │  │      editable.html
    │  │      │  │  │      footer.html
    │  │      │  │  │      reports.html
    │  │      │  │  │      treegrid_data1.json
    │  │      │  │  │      treegrid_data2.json
    │  │      │  │  │      treegrid_data3.json
    │  │      │  │  │      
    │  │      │  │  ├─validatebox
    │  │      │  │  │      basic.html
    │  │      │  │  │      customtooltip.html
    │  │      │  │  │      
    │  │      │  │  └─window
    │  │      │  │          basic.html
    │  │      │  │          customtools.html
    │  │      │  │          inlinewindow.html
    │  │      │  │          modalwindow.html
    │  │      │  │          windowlayout.html
    │  │      │  │          
    │  │      │  ├─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-pl.js
    │  │      │  │      easyui-lang-pt_BR.js
    │  │      │  │      easyui-lang-ru.js
    │  │      │  │      easyui-lang-sv_SE.js
    │  │      │  │      easyui-lang-tr.js
    │  │      │  │      easyui-lang-zh_CN.js
    │  │      │  │      easyui-lang-zh_TW.js
    │  │      │  │      
    │  │      │  ├─plugins
    │  │      │  │      jquery.accordion.js
    │  │      │  │      jquery.calendar.js
    │  │      │  │      jquery.combo.js
    │  │      │  │      jquery.combobox.js
    │  │      │  │      jquery.combogrid.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.menu.js
    │  │      │  │      jquery.menubutton.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.tooltip.js
    │  │      │  │      jquery.tree.js
    │  │      │  │      jquery.treegrid.js
    │  │      │  │      jquery.validatebox.js
    │  │      │  │      jquery.window.js
    │  │      │  │      
    │  │      │  ├─src
    │  │      │  │      easyloader.js
    │  │      │  │      jquery.accordion.js
    │  │      │  │      jquery.calendar.js
    │  │      │  │      jquery.combobox.js
    │  │      │  │      jquery.datebox.js
    │  │      │  │      jquery.draggable.js
    │  │      │  │      jquery.droppable.js
    │  │      │  │      jquery.form.js
    │  │      │  │      jquery.linkbutton.js
    │  │      │  │      jquery.menu.js
    │  │      │  │      jquery.parser.js
    │  │      │  │      jquery.progressbar.js
    │  │      │  │      jquery.propertygrid.js
    │  │      │  │      jquery.resizable.js
    │  │      │  │      jquery.slider.js
    │  │      │  │      jquery.tabs.js
    │  │      │  │      jquery.window.js
    │  │      │  │      
    │  │      │  └─themes
    │  │      │      │  icon.css
    │  │      │      │  
    │  │      │      ├─black
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.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
    │  │      │      │          Thumbs.db
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─bootstrap
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.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
    │  │      │      │          Thumbs.db
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─default
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.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
    │  │      │      │          Thumbs.db
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─gray
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.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
    │  │      │      │          Thumbs.db
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─icons
    │  │      │      │      area-chart.png
    │  │      │      │      back.png
    │  │      │      │      bar-chart.png
    │  │      │      │      blank.gif
    │  │      │      │      cancel.png
    │  │      │      │      cut.png
    │  │      │      │      edit_add.png
    │  │      │      │      edit_remove.png
    │  │      │      │      eye.png
    │  │      │      │      filesave.png
    │  │      │      │      help.png
    │  │      │      │      line-chart.png
    │  │      │      │      mini_add.png
    │  │      │      │      mini_edit.png
    │  │      │      │      mini_refresh.png
    │  │      │      │      no.png
    │  │      │      │      ok.png
    │  │      │      │      pencil.png
    │  │      │      │      pie-chart.png
    │  │      │      │      print.png
    │  │      │      │      redo.png
    │  │      │      │      reload.png
    │  │      │      │      search.png
    │  │      │      │      sum.png
    │  │      │      │      tip.png
    │  │      │      │      undo.png
    │  │      │      │      
    │  │      │      ├─metro
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.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
    │  │      │      │          Thumbs.db
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─metro-blue
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─metro-gray
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─metro-green
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─metro-orange
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─metro-red
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─ui-cupertino
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─ui-dark-hive
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─ui-pepper-grinder
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      ├─ui-sunny
    │  │      │      │  │  accordion.css
    │  │      │      │  │  calendar.css
    │  │      │      │  │  combo.css
    │  │      │      │  │  combobox.css
    │  │      │      │  │  datagrid.css
    │  │      │      │  │  datalist.css
    │  │      │      │  │  datebox.css
    │  │      │      │  │  dialog.css
    │  │      │      │  │  easyui.css
    │  │      │      │  │  filebox.css
    │  │      │      │  │  layout.css
    │  │      │      │  │  linkbutton.css
    │  │      │      │  │  menu.css
    │  │      │      │  │  menubutton.css
    │  │      │      │  │  messager.css
    │  │      │      │  │  numberbox.css
    │  │      │      │  │  pagination.css
    │  │      │      │  │  panel.css
    │  │      │      │  │  passwordbox.css
    │  │      │      │  │  progressbar.css
    │  │      │      │  │  propertygrid.css
    │  │      │      │  │  searchbox.css
    │  │      │      │  │  slider.css
    │  │      │      │  │  spinner.css
    │  │      │      │  │  splitbutton.css
    │  │      │      │  │  switchbutton.css
    │  │      │      │  │  tabs.css
    │  │      │      │  │  tagbox.css
    │  │      │      │  │  textbox.css
    │  │      │      │  │  tooltip.css
    │  │      │      │  │  tree.css
    │  │      │      │  │  validatebox.css
    │  │      │      │  │  window.css
    │  │      │      │  │  
    │  │      │      │  └─images
    │  │      │      │          accordion_arrows.png
    │  │      │      │          blank.gif
    │  │      │      │          calendar_arrows.png
    │  │      │      │          combo_arrow.png
    │  │      │      │          datagrid_icons.png
    │  │      │      │          datebox_arrow.png
    │  │      │      │          layout_arrows.png
    │  │      │      │          linkbutton_bg.png
    │  │      │      │          loading.gif
    │  │      │      │          menu_arrows.png
    │  │      │      │          messager_icons.png
    │  │      │      │          pagination_icons.png
    │  │      │      │          panel_tools.png
    │  │      │      │          passwordbox_close.png
    │  │      │      │          passwordbox_open.png
    │  │      │      │          searchbox_button.png
    │  │      │      │          slider_handle.png
    │  │      │      │          spinner_arrows.png
    │  │      │      │          tabs_icons.png
    │  │      │      │          tagbox_icons.png
    │  │      │      │          tree_icons.png
    │  │      │      │          validatebox_warning.png
    │  │      │      │          
    │  │      │      └─usericons
    │  │      │              confirm.png
    │  │      │              cpxxgl.png
    │  │      │              exit.png
    │  │      │              fwcj.png
    │  │      │              fwcl.png
    │  │      │              fwfk.png
    │  │      │              fwfp.png
    │  │      │              fwgd.png
    │  │      │              fwgl.png
    │  │      │              home.png
    │  │      │              item.png
    │  │      │              jcsjgl.png
    │  │      │              jwjl.png
    │  │      │              kfcg.png
    │  │      │              khfwfx.png
    │  │      │              khgcfx.png
    │  │      │              khgl.png
    │  │      │              khgxfx.png
    │  │      │              khkfjh.png
    │  │      │              khlsfx.png
    │  │      │              khlsgl.png
    │  │      │              khxxgl.png
    │  │      │              lsdd.png
    │  │      │              lxr.png
    │  │      │              modifyPassword.png
    │  │      │              reset.png
    │  │      │              sjzdgl.png
    │  │      │              sjzdlbgl.png
    │  │      │              tjbb.png
    │  │      │              user.png
    │  │      │              yxgl.png
    │  │      │              yxjhgl.png
    │  │      │              zzkf.png
    │  │      │              
    │  │      ├─resource
    │  │      │  ├─css
    │  │      │  │      style.css
    │  │      │  │      
    │  │      │  ├─images
    │  │      │  │      bglogo.png
    │  │      │  │      body_03.jpg
    │  │      │  │      body_032.jpg
    │  │      │  │      body_05.jpg
    │  │      │  │      body_052.jpg
    │  │      │  │      body_06.jpg
    │  │      │  │      btn1.jpg
    │  │      │  │      btn2.jpg
    │  │      │  │      checkcode.png
    │  │      │  │      login-bg.jpg
    │  │      │  │      logo.png
    │  │      │  │      Thumbs.db
    │  │      │  │      tips_display.png
    │  │      │  │      
    │  │      │  └─js
    │  │      │          common.js
    │  │      │          extendForValidateBox.js
    │  │      │          
    │  │      └─WEB-INF
    │  │          │  web.xml
    │  │          │  
    │  │          ├─common
    │  │          │      Head.jsp
    │  │          │      
    │  │          └─pages
    │  │                  databackManage.jsp
    │  │                  datadicManage.jsp
    │  │                  datainitManage.jsp
    │  │                  dataorderManage.jsp
    │  │                  datarecoverManage.jsp
    │  │                  incomeManage.jsp
    │  │                  incomeTimeManage.jsp
    │  │                  login.jsp
    │  │                  main.jsp
    │  │                  payManage.jsp
    │  │                  payTimeManage.jsp
    │  │                  roleManage.jsp
    │  │                  securityManage.jsp
    │  │                  sharesManage.jsp
    │  │                  sign.jsp
    │  │                  tradeManage.jsp
    │  │                  typePieManage.jsp
    │  │                  userManage.jsp
    │  │                  
    │  └─test
    │      ├─java
    │      └─resources
    └─target
        ├─classes
        │  │  applicationContext-myBatis.xml
        │  │  applicationContext.xml
        │  │  db.properties
        │  │  log4j.properties
        │  │  mybatis-config.xml
        │  │  springmvc.xml
        │  │  
        │  ├─com
        │  │  └─finance
        │  │      ├─controller
        │  │      │      DatabaseController.class
        │  │      │      DatadicController.class
        │  │      │      IncomeController.class
        │  │      │      PayController.class
        │  │      │      ProduceController.class
        │  │      │      RoleController.class
        │  │      │      SecurityController.class
        │  │      │      SharesController.class
        │  │      │      TradeController.class
        │  │      │      UserController.class
        │  │      │      
        │  │      ├─core
        │  │      │  └─des
        │  │      │          DESUtils.class
        │  │      │          EncryptPropertyPlaceholderConfigurer.class
        │  │      │          
        │  │      ├─dao
        │  │      │      DatabaseDao.class
        │  │      │      DatadicDao.class
        │  │      │      IncomeDao.class
        │  │      │      PayDao.class
        │  │      │      RoleDao.class
        │  │      │      SecurityDao.class
        │  │      │      SharesDao.class
        │  │      │      TradeDao.class
        │  │      │      UserDao.class
        │  │      │      
        │  │      ├─entity
        │  │      │      Database.class
        │  │      │      Datadic.class
        │  │      │      Income.class
        │  │      │      PageBean.class
        │  │      │      Pay.class
        │  │      │      Role.class
        │  │      │      Security.class
        │  │      │      Shares.class
        │  │      │      Trade.class
        │  │      │      User.class
        │  │      │      
        │  │      ├─exception
        │  │      │      ExceptionHandler.class
        │  │      │      
        │  │      ├─filter
        │  │      │      SessionFilter.class
        │  │      │      
        │  │      ├─service
        │  │      │  │  DatabaseService.class
        │  │      │  │  DatadicService.class
        │  │      │  │  IncomeService.class
        │  │      │  │  PayService.class
        │  │      │  │  RoleService.class
        │  │      │  │  SecurityService.class
        │  │      │  │  SharesService.class
        │  │      │  │  TradeService.class
        │  │      │  │  UserService.class
        │  │      │  │  
        │  │      │  └─impl
        │  │      │          DatabaseServiceImpl.class
        │  │      │          DatadicServiceImpl.class
        │  │      │          IncomeServiceImpl.class
        │  │      │          PayServiceImpl.class
        │  │      │          RoleServiceImpl.class
        │  │      │          SecurityServiceImpl.class
        │  │      │          SharesServiceImpl.class
        │  │      │          TradeServiceImpl.class
        │  │      │          UserServiceImpl.class
        │  │      │          
        │  │      └─util
        │  │              Base64Util.class
        │  │              Constants.class
        │  │              CurrentConn.class
        │  │              DateUtil.class
        │  │              MD5Util.class
        │  │              ResponseUtil.class
        │  │              SpringUtil.class
        │  │              StringUtil.class
        │  │              
        │  ├─doc
        │  │      ffms.sql
        │  │      
        │  └─mappers
        │          DatabaseMapper.xml
        │          DatadicMapper.xml
        │          IncomeMapper.xml
        │          PayMapper.xml
        │          RoleMapper.xml
        │          SecurityMapper.xml
        │          SharesMapper.xml
        │          TradeMapper.xml
        │          UserMapper.xml
        │          
        ├─m2e-wtp
        │  └─web-resources
        │      └─META-INF
        │          │  MANIFEST.MF
        │          │  
        │          └─maven
        │              └─com.finance
        │                  └─ffms
        │                          pom.properties
        │                          pom.xml
        │                          
        └─test-classes

标签:家庭理财系统,家庭财务管理系统,个人理财系统

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

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

  • 联系QQ:81677093
  • 微信:bysj1950