在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Java数据库编程 → java springboot mybatis plus

java springboot mybatis plus

Java数据库编程

下载此实例
  • 开发语言:Java
  • 实例大小:10.18M
  • 下载次数:9
  • 浏览次数:74
  • 发布时间:2024-09-16
  • 实例类别:Java数据库编程
  • 发 布 人:开发邹
  • 文件格式:.rar
  • 所需积分:7
 相关标签: java ja

实例介绍

【实例简介】

   开发 语言Java   框架采用  springboot  数据操作采用    mybatis plus

【实例截图】

from clipboard




【核心代码】

from clipboard


【源码目录】

adollable-admin

├── QQconnectconfig.properties
├── README.md
├── adollable.iml
├── kvf.iml
├── kvf.properties
├── kvf.xml
├── module_kvf.xml
├── pom.xml
├── sql
│   ├── kvf_admin.sql
│   └── quartz.sql
├── src
│   ├── main
│   │   ├── java
│   │   │   └── com
│   │   │       └── kalvin
│   │   │           └── kvf
│   │   │               ├── ChatSocket.java
│   │   │               ├── KvfAdminApplication.java
│   │   │               ├── ServletInitializer.java
│   │   │               ├── WebSocket.java
│   │   │               ├── common
│   │   │               │   ├── CodeGenerator.java
│   │   │               │   ├── CodeGenerator2.java
│   │   │               │   ├── annotation
│   │   │               │   │   └── Action.java
│   │   │               │   ├── aspect
│   │   │               │   │   └── ActionAspect.java
│   │   │               │   ├── config
│   │   │               │   │   ├── EhCacheConfig.java
│   │   │               │   │   ├── ErrorPageConfig.java
│   │   │               │   │   ├── KaptchaConfig.java
│   │   │               │   │   ├── MybatisPlusConfig.java
│   │   │               │   │   ├── RedisConfig.java
│   │   │               │   │   ├── WebMvcConfig.java
│   │   │               │   │   ├── WebSocketConfig.java
│   │   │               │   │   └── XssFilterConfig.java
│   │   │               │   ├── constant
│   │   │               │   │   ├── Constants.java
│   │   │               │   │   ├── SysConstant.java
│   │   │               │   │   └── UploadPathEnum.java
│   │   │               │   ├── controller
│   │   │               │   │   ├── BaseController.java
│   │   │               │   │   └── CommonController.java
│   │   │               │   ├── dto
│   │   │               │   │   ├── R.java
│   │   │               │   │   ├── UploadFileInfo.java
│   │   │               │   │   └── ZTreeDTO.java
│   │   │               │   ├── entity
│   │   │               │   │   ├── BaseEntity.java
│   │   │               │   │   ├── BasePageEntity.java
│   │   │               │   │   └── ImgInfo.java
│   │   │               │   ├── exception
│   │   │               │   │   ├── ExceptHandler.java
│   │   │               │   │   └── KvfException.java
│   │   │               │   ├── shiro
│   │   │               │   │   ├── LoginFilter.java
│   │   │               │   │   ├── ShiroConfig.java
│   │   │               │   │   └── UserRealm.java
│   │   │               │   ├── utils
│   │   │               │   │   ├── CryptionKit.java
│   │   │               │   │   ├── ExcelUtil.java
│   │   │               │   │   ├── FileUploadKit.java
│   │   │               │   │   ├── HttpServletContextKit.java
│   │   │               │   │   ├── ShiroFilterKit.java
│   │   │               │   │   ├── ShiroKit.java
│   │   │               │   │   ├── SpringContextKit.java
│   │   │               │   │   ├── WechatCommonUtil.java
│   │   │               │   │   ├── WechatConfigLoader.java
│   │   │               │   │   ├── WechatOAuthProcessUtil.java
│   │   │               │   │   └── WechatX509TrustManager.java
│   │   │               │   └── xss
│   │   │               │       ├── HTMLFilter.java
│   │   │               │       ├── SQLFilter.java
│   │   │               │       ├── XssFilter.java
│   │   │               │       └── XssHttpRequestWrapper.java
│   │   │               └── modules
│   │   │                   ├── api
│   │   │                   │   └── controller
│   │   │                   │       ├── AttentionController.java
│   │   │                   │       ├── ChatsController.java
│   │   │                   │       ├── FeedBacksController.java
│   │   │                   │       ├── IntegralsController.java
│   │   │                   │       ├── MnewsController.java
│   │   │                   │       ├── MpostingController.java
│   │   │                   │       ├── MuserController.java
│   │   │                   │       ├── OrdersController.java
│   │   │                   │       ├── QQLoginController.java
│   │   │                   │       ├── ShopsController.java
│   │   │                   │       ├── WeiboLoginController.java
│   │   │                   │       └── ZaningController.java
│   │   │                   ├── generator
│   │   │                   │   ├── constant
│   │   │                   │   │   ├── ConfigConstant.java
│   │   │                   │   │   ├── DbColumnTypeEnum.java
│   │   │                   │   │   ├── JavaTypeEnum.java
│   │   │                   │   │   └── TemplateTypeEnum.java
│   │   │                   │   ├── controller
│   │   │                   │   │   ├── GenController.java
│   │   │                   │   │   └── TableController.java
│   │   │                   │   ├── dto
│   │   │                   │   │   ├── ButtonConfigDTO.java
│   │   │                   │   │   ├── ColumnCommentValueRelationDTO.java
│   │   │                   │   │   ├── ColumnConfigDTO.java
│   │   │                   │   │   ├── ColumnsValueRelationDTO.java
│   │   │                   │   │   ├── QueryColumnConfigDTO.java
│   │   │                   │   │   ├── TableColumnDTO.java
│   │   │                   │   │   └── TableDTO.java
│   │   │                   │   ├── mapper
│   │   │                   │   │   ├── GenMapper.java
│   │   │                   │   │   └── TableMapper.java
│   │   │                   │   ├── service
│   │   │                   │   │   ├── GenServiceImpl.java
│   │   │                   │   │   ├── IGenService.java
│   │   │                   │   │   ├── ITableService.java
│   │   │                   │   │   └── TableServiceImpl.java
│   │   │                   │   ├── utils
│   │   │                   │   │   ├── AuxiliaryKit.java
│   │   │                   │   │   └── VelocityKit.java
│   │   │                   │   └── vo
│   │   │                   │       ├── GenConfigVO.java
│   │   │                   │       └── QuicklyGenParamsVO.java
│   │   │                   ├── schedule
│   │   │                   │   ├── config
│   │   │                   │   │   └── ScheduleConfig.java
│   │   │                   │   ├── constant
│   │   │                   │   │   └── JobConstant.java
│   │   │                   │   ├── controller
│   │   │                   │   │   └── JobController.java
│   │   │                   │   ├── entity
│   │   │                   │   │   └── Job.java
│   │   │                   │   ├── job
│   │   │                   │   │   └── HelloJob.java
│   │   │                   │   ├── mapper
│   │   │                   │   │   └── JobMapper.java
│   │   │                   │   ├── service
│   │   │                   │   │   ├── JobService.java
│   │   │                   │   │   └── JobServiceImpl.java
│   │   │                   │   └── utils
│   │   │                   │       └── ScheduleKit.java
│   │   │                   ├── sys
│   │   │                   │   ├── controller
│   │   │                   │   │   ├── DeptController.java
│   │   │                   │   │   ├── DictController.java
│   │   │                   │   │   ├── IndexController.java
│   │   │                   │   │   ├── LogController.java
│   │   │                   │   │   ├── LoginController.java
│   │   │                   │   │   ├── MenuController.java
│   │   │                   │   │   ├── RoleController.java
│   │   │                   │   │   ├── RoleMenuController.java
│   │   │                   │   │   ├── UserController.java
│   │   │                   │   │   ├── UserRoleController.java
│   │   │                   │   │   └── UsersignController.java
│   │   │                   │   ├── dto
│   │   │                   │   │   ├── UserEditDTO.java
│   │   │                   │   │   └── UserRoleGroupDTO.java
│   │   │                   │   ├── entity
│   │   │                   │   │   ├── Dept.java
│   │   │                   │   │   ├── Dict.java
│   │   │                   │   │   ├── Log.java
│   │   │                   │   │   ├── Menu.java
│   │   │                   │   │   ├── Role.java
│   │   │                   │   │   ├── RoleMenu.java
│   │   │                   │   │   ├── User.java
│   │   │                   │   │   ├── UserRole.java
│   │   │                   │   │   └── Usersign.java
│   │   │                   │   ├── mapper
│   │   │                   │   │   ├── DeptMapper.java
│   │   │                   │   │   ├── DictMapper.java
│   │   │                   │   │   ├── LogMapper.java
│   │   │                   │   │   ├── MenuMapper.java
│   │   │                   │   │   ├── RoleMapper.java
│   │   │                   │   │   ├── RoleMenuMapper.java
│   │   │                   │   │   ├── UserMapper.java
│   │   │                   │   │   ├── UserRoleMapper.java
│   │   │                   │   │   └── UsersignMapper.java
│   │   │                   │   ├── service
│   │   │                   │   │   ├── DeptServiceImpl.java
│   │   │                   │   │   ├── DictService.java
│   │   │                   │   │   ├── DictServiceImpl.java
│   │   │                   │   │   ├── IDeptService.java
│   │   │                   │   │   ├── ILogService.java
│   │   │                   │   │   ├── IMenuService.java
│   │   │                   │   │   ├── IRoleMenuService.java
│   │   │                   │   │   ├── IRoleService.java
│   │   │                   │   │   ├── IUserRoleService.java
│   │   │                   │   │   ├── IUserService.java
│   │   │                   │   │   ├── LogServiceImpl.java
│   │   │                   │   │   ├── MenuServiceImpl.java
│   │   │                   │   │   ├── RoleMenuServiceImpl.java
│   │   │                   │   │   ├── RoleServiceImpl.java
│   │   │                   │   │   ├── UserRoleServiceImpl.java
│   │   │                   │   │   ├── UserServiceImpl.java
│   │   │                   │   │   ├── UsersignService.java
│   │   │                   │   │   └── UsersignServiceImpl.java
│   │   │                   │   └── vo
│   │   │                   │       ├── RoleMenuVO.java
│   │   │                   │       ├── UserQueryVO.java
│   │   │                   │       └── UserRoleVO.java
│   │   │                   └── yx
│   │   │                       ├── controller
│   │   │                       │   ├── BoardController.java
│   │   │                       │   ├── ChatController.java
│   │   │                       │   ├── CheckbaseController.java
│   │   │                       │   ├── CheckdataController.java
│   │   │                       │   ├── CheckdatadetailController.java
│   │   │                       │   ├── ChecksettingController.java
│   │   │                       │   ├── CollectController.java
│   │   │                       │   ├── FeedbackController.java
│   │   │                       │   ├── IntegralController.java
│   │   │                       │   ├── NewsController.java
│   │   │                       │   ├── NozanController.java
│   │   │                       │   ├── OrderController.java
│   │   │                       │   ├── PostingController.java
│   │   │                       │   ├── ReportController.java
│   │   │                       │   ├── RoutinerecordController.java
│   │   │                       │   ├── RoutinerecorddetailController.java
│   │   │                       │   ├── ShareController.java
│   │   │                       │   ├── ShopController.java
│   │   │                       │   ├── SubscribeController.java
│   │   │                       │   ├── UserLoginController.java
│   │   │                       │   └── ZanController.java
│   │   │                       ├── dto
│   │   │                       ├── entity
│   │   │                       │   ├── Board.java
│   │   │                       │   ├── Chat.java
│   │   │                       │   ├── Checkbase.java
│   │   │                       │   ├── Checkdata.java
│   │   │                       │   ├── Checkdatadetail.java
│   │   │                       │   ├── Checksetting.java
│   │   │                       │   ├── Collect.java
│   │   │                       │   ├── Feedback.java
│   │   │                       │   ├── Integral.java
│   │   │                       │   ├── News.java
│   │   │                       │   ├── Nozan.java
│   │   │                       │   ├── Order.java
│   │   │                       │   ├── Posting.java
│   │   │                       │   ├── Report.java
│   │   │                       │   ├── Routinerecord.java
│   │   │                       │   ├── Routinerecorddetail.java
│   │   │                       │   ├── Share.java
│   │   │                       │   ├── Shop.java
│   │   │                       │   ├── Subscribe.java
│   │   │                       │   ├── UserLogin.java
│   │   │                       │   ├── WorldShop.java
│   │   │                       │   └── Zan.java
│   │   │                       ├── mapper
│   │   │                       │   ├── BoardMapper.java
│   │   │                       │   ├── ChatMapper.java
│   │   │                       │   ├── CheckbaseMapper.java
│   │   │                       │   ├── CheckdataMapper.java
│   │   │                       │   ├── CheckdatadetailMapper.java
│   │   │                       │   ├── ChecksettingMapper.java
│   │   │                       │   ├── CollectMapper.java
│   │   │                       │   ├── FeedbackMapper.java
│   │   │                       │   ├── IntegralMapper.java
│   │   │                       │   ├── NewsMapper.java
│   │   │                       │   ├── NozanMapper.java
│   │   │                       │   ├── OrderMapper.java
│   │   │                       │   ├── PostingMapper.java
│   │   │                       │   ├── ReportMapper.java
│   │   │                       │   ├── RoutinerecordMapper.java
│   │   │                       │   ├── RoutinerecorddetailMapper.java
│   │   │                       │   ├── ShareMapper.java
│   │   │                       │   ├── ShopMapper.java
│   │   │                       │   ├── SubscribeMapper.java
│   │   │                       │   ├── UserLoginMapper.java
│   │   │                       │   ├── WorldShopMapper.java
│   │   │                       │   └── ZanMapper.java
│   │   │                       ├── service
│   │   │                       │   ├── BoardService.java
│   │   │                       │   ├── BoardServiceImpl.java
│   │   │                       │   ├── ChatService.java
│   │   │                       │   ├── ChatServiceImpl.java
│   │   │                       │   ├── CheckbaseService.java
│   │   │                       │   ├── CheckbaseServiceImpl.java
│   │   │                       │   ├── CheckdataService.java
│   │   │                       │   ├── CheckdataServiceImpl.java
│   │   │                       │   ├── CheckdatadetailService.java
│   │   │                       │   ├── CheckdatadetailServiceImpl.java
│   │   │                       │   ├── ChecksettingService.java
│   │   │                       │   ├── ChecksettingServiceImpl.java
│   │   │                       │   ├── CollectService.java
│   │   │                       │   ├── CollectServiceImpl.java
│   │   │                       │   ├── FeedbackService.java
│   │   │                       │   ├── FeedbackServiceImpl.java
│   │   │                       │   ├── IntegralService.java
│   │   │                       │   ├── IntegralServiceImpl.java
│   │   │                       │   ├── NewsService.java
│   │   │                       │   ├── NewsServiceImpl.java
│   │   │                       │   ├── NozanService.java
│   │   │                       │   ├── NozanServiceImpl.java
│   │   │                       │   ├── OrderService.java
│   │   │                       │   ├── OrderServiceImpl.java
│   │   │                       │   ├── PostingService.java
│   │   │                       │   ├── PostingServiceImpl.java
│   │   │                       │   ├── ReportService.java
│   │   │                       │   ├── ReportServiceImpl.java
│   │   │                       │   ├── RoutinerecordService.java
│   │   │                       │   ├── RoutinerecordServiceImpl.java
│   │   │                       │   ├── RoutinerecorddetailService.java
│   │   │                       │   ├── RoutinerecorddetailServiceImpl.java
│   │   │                       │   ├── ShareService.java
│   │   │                       │   ├── ShareServiceImpl.java
│   │   │                       │   ├── ShopService.java
│   │   │                       │   ├── ShopServiceImpl.java
│   │   │                       │   ├── SubscribeService.java
│   │   │                       │   ├── SubscribeServiceImpl.java
│   │   │                       │   ├── UserLoginService.java
│   │   │                       │   ├── UserLoginServiceImpl.java
│   │   │                       │   ├── WorldShopService.java
│   │   │                       │   ├── WorldShopServiceImpl.java
│   │   │                       │   ├── ZanService.java
│   │   │                       │   └── ZanServiceImpl.java
│   │   │                       └── vo
│   │   │                           ├── WechatAccessTokenVo.java
│   │   │                           └── WechatSNSUserInfoVo.java
│   │   ├── resources
│   │   │   ├── application-dev.yml
│   │   │   ├── application-prod.yml
│   │   │   ├── application-test.yml
│   │   │   ├── application.yml
│   │   │   ├── ehcache.xml
│   │   │   ├── logback.xml
│   │   │   ├── mapper
│   │   │   │   ├── schedule
│   │   │   │   │   └── JobMapper.xml
│   │   │   │   ├── sys
│   │   │   │   │   ├── DeptMapper.xml
│   │   │   │   │   ├── DictMapper.xml
│   │   │   │   │   ├── LogMapper.xml
│   │   │   │   │   ├── MenuMapper.xml
│   │   │   │   │   ├── RoleMapper.xml
│   │   │   │   │   ├── RoleMenuMapper.xml
│   │   │   │   │   ├── UserMapper.xml
│   │   │   │   │   ├── UserRoleMapper.xml
│   │   │   │   │   └── UsersignMapper.xml
│   │   │   │   └── yx
│   │   │   │       ├── BoardMapper.xml
│   │   │   │       ├── ChatMapper.xml
│   │   │   │       ├── CollectMapper.xml
│   │   │   │       ├── FeedbackMapper.xml
│   │   │   │       ├── IntegralMapper.xml
│   │   │   │       ├── NewsMapper.xml
│   │   │   │       ├── NozanMapper.xml
│   │   │   │       ├── OrderMapper.xml
│   │   │   │       ├── PostingMapper.xml
│   │   │   │       ├── ReportMapper.xml
│   │   │   │       ├── ShareMapper.xml
│   │   │   │       ├── ShopMapper.xml
│   │   │   │       ├── SubscribeMapper.xml
│   │   │   │       ├── UserLoginMapper.xml
│   │   │   │       ├── WorldShopMapper.xml
│   │   │   │       ├── ZanMapper.xml
│   │   │   │       ├── subscribe.html
│   │   │   │       └── subscribe_edit.html
│   │   │   ├── static
│   │   │   │   ├── appow
│   │   │   │   │   ├── agreement.html
│   │   │   │   │   ├── appow.html
│   │   │   │   │   ├── copyright.html
│   │   │   │   │   ├── css
│   │   │   │   │   │   └── app.css
│   │   │   │   │   ├── guiding.html
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── 192x192.png
│   │   │   │   │   │   ├── a.png
│   │   │   │   │   │   ├── beian.png
│   │   │   │   │   │   ├── dm.jpg
│   │   │   │   │   │   ├── dp.jpg
│   │   │   │   │   │   ├── ft.jpg
│   │   │   │   │   │   └── lt.jpg
│   │   │   │   │   └── privacy.html
│   │   │   │   ├── apprelease.html
│   │   │   │   ├── css
│   │   │   │   │   ├── kvf-theme.css
│   │   │   │   │   ├── kvf-treegrid.css
│   │   │   │   │   └── kvf.css
│   │   │   │   ├── image
│   │   │   │   │   └── avatar
│   │   │   │   │       ├── default.png
│   │   │   │   │       ├── man.jpg
│   │   │   │   │       └── tz.jpeg
│   │   │   │   ├── js
│   │   │   │   │   ├── jquery.cookie.js
│   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   ├── kcommon.js
│   │   │   │   │   ├── kconfig.js
│   │   │   │   │   ├── kconfig.js.bak
│   │   │   │   │   ├── kpopup.js
│   │   │   │   │   ├── loading.js
│   │   │   │   │   ├── select-tree.js
│   │   │   │   │   └── vue.min.js
│   │   │   │   ├── mobile
│   │   │   │   │   ├── addAddress.html
│   │   │   │   │   ├── app-release.apk
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── addAddress.css
│   │   │   │   │   │   ├── animate.css
│   │   │   │   │   │   ├── app.css
│   │   │   │   │   │   ├── asidenav.css
│   │   │   │   │   │   ├── ball.css
│   │   │   │   │   │   ├── ball1.css
│   │   │   │   │   │   ├── chat-sys.css
│   │   │   │   │   │   ├── chat.css
│   │   │   │   │   │   ├── editor.css
│   │   │   │   │   │   ├── editor.less
│   │   │   │   │   │   ├── editor.scss
│   │   │   │   │   │   ├── feedback-page.css
│   │   │   │   │   │   ├── feedback.css
│   │   │   │   │   │   ├── fonts
│   │   │   │   │   │   │   ├── icomoon.eot
│   │   │   │   │   │   │   ├── icomoon.svg
│   │   │   │   │   │   │   ├── icomoon.ttf
│   │   │   │   │   │   │   └── icomoon.woff
│   │   │   │   │   │   ├── head_style.css
│   │   │   │   │   │   ├── iconfont.css
│   │   │   │   │   │   ├── iconfont.svg
│   │   │   │   │   │   ├── iconfont.ttf
│   │   │   │   │   │   ├── ie.css
│   │   │   │   │   │   ├── loading.css
│   │   │   │   │   │   ├── main.css
│   │   │   │   │   │   ├── mainposting.css
│   │   │   │   │   │   ├── member-center.css
│   │   │   │   │   │   ├── member-mine-update.css
│   │   │   │   │   │   ├── member-mine.css
│   │   │   │   │   │   ├── member-shop.css
│   │   │   │   │   │   ├── member-word.css
│   │   │   │   │   │   ├── message-list.css
│   │   │   │   │   │   ├── mui.css
│   │   │   │   │   │   ├── mui.indexedlist.css
│   │   │   │   │   │   ├── mui.min.css
│   │   │   │   │   │   ├── mui.picker.all.css
│   │   │   │   │   │   ├── mui.picker.css
│   │   │   │   │   │   ├── mui.picker.min.css
│   │   │   │   │   │   ├── mui.poppicker.css
│   │   │   │   │   │   ├── myinfo.css
│   │   │   │   │   │   ├── myinfopage-post.css
│   │   │   │   │   │   ├── myinfopage-store.css
│   │   │   │   │   │   ├── order-dfh-details.css
│   │   │   │   │   │   ├── order-dfh.css
│   │   │   │   │   │   ├── order-dfk-details.css
│   │   │   │   │   │   ├── order-dfk.css
│   │   │   │   │   │   ├── order-dpj-details.css
│   │   │   │   │   │   ├── order-dpj.css
│   │   │   │   │   │   ├── order-dsh-details.css
│   │   │   │   │   │   ├── order-dsh.css
│   │   │   │   │   │   ├── order-sure.css
│   │   │   │   │   │   ├── order.css
│   │   │   │   │   │   ├── print.css
│   │   │   │   │   │   ├── reply-post.css
│   │   │   │   │   │   ├── report.css
│   │   │   │   │   │   ├── save-post.css
│   │   │   │   │   │   ├── send-post.css
│   │   │   │   │   │   ├── showMessage.css
│   │   │   │   │   │   ├── store.css
│   │   │   │   │   │   ├── style-gz.css
│   │   │   │   │   │   ├── style.css
│   │   │   │   │   │   ├── toast.css
│   │   │   │   │   │   ├── wangEditor-mobile.css
│   │   │   │   │   │   ├── wangEditor-mobile.min.css
│   │   │   │   │   │   └── xtiper.css
│   │   │   │   │   ├── feedback.html
│   │   │   │   │   ├── fonts
│   │   │   │   │   │   └── mui.ttf
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── android.png
│   │   │   │   │   │   ├── beij.jpg
│   │   │   │   │   │   ├── beij.png
│   │   │   │   │   │   ├── beij2.png
│   │   │   │   │   │   ├── bg.png
│   │   │   │   │   │   ├── biaoqing.png
│   │   │   │   │   │   ├── dianhua.png
│   │   │   │   │   │   ├── dizhi.png
│   │   │   │   │   │   ├── fabuxuanfu.png
│   │   │   │   │   │   ├── gengduo.png
│   │   │   │   │   │   ├── gw.png
│   │   │   │   │   │   ├── gzbz.png
│   │   │   │   │   │   ├── huiyuan-zx
│   │   │   │   │   │   │   ├── baiyinhuiyuan.png
│   │   │   │   │   │   │   ├── baiyinhuiyuan_bg.png
│   │   │   │   │   │   │   ├── huangjinhuiyuan.png
│   │   │   │   │   │   │   ├── huangjinhuiyuan_bg.png
│   │   │   │   │   │   │   ├── jifen .png
│   │   │   │   │   │   │   ├── putonghuiyuan.png
│   │   │   │   │   │   │   ├── putonghuiyuan_bg.png
│   │   │   │   │   │   │   ├── shangyequ.png
│   │   │   │   │   │   │   ├── yinying_huiyuan.png
│   │   │   │   │   │   │   └── yulequ.png
│   │   │   │   │   │   ├── icon_mima.png
│   │   │   │   │   │   ├── icon_shoujihao.png
│   │   │   │   │   │   ├── ios.png
│   │   │   │   │   │   ├── jf.png
│   │   │   │   │   │   ├── jjpm.png
│   │   │   │   │   │   ├── jubao.jpg
│   │   │   │   │   │   ├── jxgz.png
│   │   │   │   │   │   ├── jxpm.png
│   │   │   │   │   │   ├── lc.png
│   │   │   │   │   │   ├── logo.png
│   │   │   │   │   │   ├── lwht.png
│   │   │   │   │   │   ├── mainposting.jpg
│   │   │   │   │   │   ├── man.png
│   │   │   │   │   │   ├── miao.gif
│   │   │   │   │   │   ├── myinfo
│   │   │   │   │   │   │   ├── add.png
│   │   │   │   │   │   │   ├── bianji.png
│   │   │   │   │   │   │   ├── daifahuo.png
│   │   │   │   │   │   │   ├── daifukuan.png
│   │   │   │   │   │   │   ├── daipingjia.png
│   │   │   │   │   │   │   ├── daishouhuo.png
│   │   │   │   │   │   │   ├── danmu.png
│   │   │   │   │   │   │   ├── dianhua.png
│   │   │   │   │   │   │   ├── dingdan_dizhi.png
│   │   │   │   │   │   │   ├── dingdan_jifen.png
│   │   │   │   │   │   │   ├── diz1.jpg
│   │   │   │   │   │   │   ├── dizhi.png
│   │   │   │   │   │   │   ├── feichuan.png
│   │   │   │   │   │   │   ├── fenx.png
│   │   │   │   │   │   │   ├── fenx2.png
│   │   │   │   │   │   │   ├── fenxiang_neirong_hui@2x.png
│   │   │   │   │   │   │   ├── guanzhu.png
│   │   │   │   │   │   │   ├── jubao.jpg
│   │   │   │   │   │   │   ├── jubao.png
│   │   │   │   │   │   │   ├── liuyan.png
│   │   │   │   │   │   │   ├── low_neirong_bai@2x.png
│   │   │   │   │   │   │   ├── low_neirong_hui@2x.png
│   │   │   │   │   │   │   ├── member-word.css
│   │   │   │   │   │   │   ├── mendian-log.jpg
│   │   │   │   │   │   │   ├── nzan-red  .png
│   │   │   │   │   │   │   ├── nzan.png
│   │   │   │   │   │   │   ├── nzan2.png
│   │   │   │   │   │   │   ├── order.png
│   │   │   │   │   │   │   ├── post1.jpg
│   │   │   │   │   │   │   ├── post2.jpg
│   │   │   │   │   │   │   ├── post3.jpg
│   │   │   │   │   │   │   ├── post4.jpg
│   │   │   │   │   │   │   ├── qiandao.png
│   │   │   │   │   │   │   ├── reply.jpg
│   │   │   │   │   │   │   ├── reply.png
│   │   │   │   │   │   │   ├── shanchu.png
│   │   │   │   │   │   │   ├── shoucang.png
│   │   │   │   │   │   │   ├── shoucang2.png
│   │   │   │   │   │   │   ├── shoucang_neirong_bai@2x.png
│   │   │   │   │   │   │   ├── shoucang_neirong_hui@2x.png
│   │   │   │   │   │   │   ├── shoucx22.png
│   │   │   │   │   │   │   ├── store-img.png
│   │   │   │   │   │   │   ├── timg (7).jpg
│   │   │   │   │   │   │   ├── toux.png
│   │   │   │   │   │   │   ├── toux2.png
│   │   │   │   │   │   │   ├── word-1.png
│   │   │   │   │   │   │   ├── xingqiu.png
│   │   │   │   │   │   │   ├── yiguanzhu.png
│   │   │   │   │   │   │   ├── youhui.png
│   │   │   │   │   │   │   ├── zan-red  .png
│   │   │   │   │   │   │   ├── zan.png
│   │   │   │   │   │   │   ├── zan2.png
│   │   │   │   │   │   │   ├── zan_neirong_bai@2x.png
│   │   │   │   │   │   │   └── zan_neirong_hui@2x.png
│   │   │   │   │   │   ├── paizhao.png
│   │   │   │   │   │   ├── pwd.png
│   │   │   │   │   │   ├── px.png
│   │   │   │   │   │   ├── qq.png
│   │   │   │   │   │   ├── shoucx22.png
│   │   │   │   │   │   ├── store-img.png
│   │   │   │   │   │   ├── title.png
│   │   │   │   │   │   ├── toux2.png
│   │   │   │   │   │   ├── toux3.png
│   │   │   │   │   │   ├── tp1.png
│   │   │   │   │   │   ├── tupian.png
│   │   │   │   │   │   ├── user.png
│   │   │   │   │   │   ├── wdgz.png
│   │   │   │   │   │   ├── wdjx.png
│   │   │   │   │   │   ├── weibo.png
│   │   │   │   │   │   ├── weixin.png
│   │   │   │   │   │   ├── wode.png
│   │   │   │   │   │   ├── wypf.png
│   │   │   │   │   │   ├── xiaona.png
│   │   │   │   │   │   ├── xiaoxixuanfu.png
│   │   │   │   │   │   ├── xiaoxixuanfu_chat.png
│   │   │   │   │   │   ├── ygsc.png
│   │   │   │   │   │   ├── youhui.png
│   │   │   │   │   │   ├── youxiang.png
│   │   │   │   │   │   ├── yuyin.png
│   │   │   │   │   │   ├── zhaopian.png
│   │   │   │   │   │   └── zhaopian_1.png
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── app.js
│   │   │   │   │   │   ├── asidenav.js
│   │   │   │   │   │   ├── ball.js
│   │   │   │   │   │   ├── ball1.js
│   │   │   │   │   │   ├── city.data-3.js
│   │   │   │   │   │   ├── editor.js
│   │   │   │   │   │   ├── editor.min.js
│   │   │   │   │   │   ├── feedback-page.js
│   │   │   │   │   │   ├── feedback.js
│   │   │   │   │   │   ├── iconfont.js
│   │   │   │   │   │   ├── jSignature.js
│   │   │   │   │   │   ├── jq-signature.min.js
│   │   │   │   │   │   ├── jquery-2.0.0.min.js
│   │   │   │   │   │   ├── jquery.js
│   │   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   │   ├── loading.js
│   │   │   │   │   │   ├── mui.enterfocus.js
│   │   │   │   │   │   ├── mui.locker.js
│   │   │   │   │   │   ├── mui.min.js
│   │   │   │   │   │   ├── mui.picker.all.js
│   │   │   │   │   │   ├── mui.picker.js
│   │   │   │   │   │   ├── mui.picker.min.js
│   │   │   │   │   │   ├── mui.poppicker.js
│   │   │   │   │   │   ├── mui.view.js
│   │   │   │   │   │   ├── wangEditor-mobile.js
│   │   │   │   │   │   ├── wangEditor-mobile.min.js
│   │   │   │   │   │   ├── wangEditor.js
│   │   │   │   │   │   ├── wangEditor.min.js
│   │   │   │   │   │   ├── xtiper.js
│   │   │   │   │   │   ├── xtiper.min.js
│   │   │   │   │   │   ├── zepto.js
│   │   │   │   │   │   └── zepto.touch.js
│   │   │   │   │   ├── login.html
│   │   │   │   │   ├── member-board.html
│   │   │   │   │   ├── member-center.html
│   │   │   │   │   ├── member-chat.html
│   │   │   │   │   ├── member-fans.html
│   │   │   │   │   ├── member-gz.html
│   │   │   │   │   ├── member-hb.html
│   │   │   │   │   ├── member-jxdetail.html
│   │   │   │   │   ├── member-jyg.html
│   │   │   │   │   ├── member-list.html
│   │   │   │   │   ├── member-main.html
│   │   │   │   │   ├── member-main2.html
│   │   │   │   │   ├── member-mainpostings.html
│   │   │   │   │   ├── member-mainpostings1.html
│   │   │   │   │   ├── member-mainpostings2.html
│   │   │   │   │   ├── member-mainpostings3.html
│   │   │   │   │   ├── member-mine-update.html
│   │   │   │   │   ├── member-mine.html
│   │   │   │   │   ├── member-mine2.html
│   │   │   │   │   ├── member-myinfo.html
│   │   │   │   │   ├── member-myinfo1.html
│   │   │   │   │   ├── member-myshop.html
│   │   │   │   │   ├── member-pay.html
│   │   │   │   │   ├── member-paylist.html
│   │   │   │   │   ├── member-pj-g.html
│   │   │   │   │   ├── member-pj.html
│   │   │   │   │   ├── member-postings-f.html
│   │   │   │   │   ├── member-postings-p.html
│   │   │   │   │   ├── member-postings-update.html
│   │   │   │   │   ├── member-postings.html
│   │   │   │   │   ├── member-report.html
│   │   │   │   │   ├── member-score.html
│   │   │   │   │   ├── member-scorelist.html
│   │   │   │   │   ├── member-shop.html
│   │   │   │   │   ├── member-word.html
│   │   │   │   │   ├── member-world.html
│   │   │   │   │   ├── member-zan.html
│   │   │   │   │   ├── message-list.html
│   │   │   │   │   ├── myinfopage-post.html
│   │   │   │   │   ├── myinfopage-store.html
│   │   │   │   │   ├── order-dfh-details.html
│   │   │   │   │   ├── order-dfh.html
│   │   │   │   │   ├── order-dfk-details.html
│   │   │   │   │   ├── order-dfk.html
│   │   │   │   │   ├── order-dpj-details.html
│   │   │   │   │   ├── order-dpj.html
│   │   │   │   │   ├── order-dsh-details.html
│   │   │   │   │   ├── order-dsh.html
│   │   │   │   │   ├── order-sure.html
│   │   │   │   │   ├── order.html
│   │   │   │   │   ├── password.html
│   │   │   │   │   ├── register.html
│   │   │   │   │   ├── reply-post.html
│   │   │   │   │   ├── save-post.html
│   │   │   │   │   ├── send-post.html
│   │   │   │   │   ├── shop-details.html
│   │   │   │   │   ├── shop-order-dfh.html
│   │   │   │   │   ├── shop-order-dfk.html
│   │   │   │   │   ├── shop-order-dpj.html
│   │   │   │   │   ├── shop-order-dsh.html
│   │   │   │   │   ├── shop-order.html
│   │   │   │   │   ├── system-message.html
│   │   │   │   │   └── test.html
│   │   │   │   ├── plugins
│   │   │   │   │   ├── ace
│   │   │   │   │   │   ├── ace.js
│   │   │   │   │   │   ├── ext-searchbox.js
│   │   │   │   │   │   ├── mode-html.js
│   │   │   │   │   │   ├── snippets
│   │   │   │   │   │   │   └── html.js
│   │   │   │   │   │   ├── theme-tomorrow.js
│   │   │   │   │   │   └── worker-html.js
│   │   │   │   │   ├── easyui
│   │   │   │   │   │   ├── easyloader.js
│   │   │   │   │   │   ├── jquery.easyui.min.js
│   │   │   │   │   │   ├── plugins
│   │   │   │   │   │   │   ├── copy.js
│   │   │   │   │   │   │   ├── jquery.accordion.js
│   │   │   │   │   │   │   ├── jquery.calendar
│   │   │   │   │   │   │   ├── jquery.calendar.js
│   │   │   │   │   │   │   ├── jquery.checkbox.js
│   │   │   │   │   │   │   ├── jquery.combo.js
│   │   │   │   │   │   │   ├── jquery.combobox.js
│   │   │   │   │   │   │   ├── jquery.combogrid.js
│   │   │   │   │   │   │   ├── jquery.combotree.js
│   │   │   │   │   │   │   ├── jquery.combotreegrid.js
│   │   │   │   │   │   │   ├── jquery.datagrid.js
│   │   │   │   │   │   │   ├── jquery.datalist.js
│   │   │   │   │   │   │   ├── jquery.datebox.js
│   │   │   │   │   │   │   ├── jquery.datetimebox.js
│   │   │   │   │   │   │   ├── jquery.datetimespinner.js
│   │   │   │   │   │   │   ├── jquery.dialog.js
│   │   │   │   │   │   │   ├── jquery.draggable.js
│   │   │   │   │   │   │   ├── jquery.droppable.js
│   │   │   │   │   │   │   ├── jquery.filebox.js
│   │   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   │   ├── jquery.layout.js
│   │   │   │   │   │   │   ├── jquery.linkbutton.js
│   │   │   │   │   │   │   ├── jquery.maskedbox.js
│   │   │   │   │   │   │   ├── jquery.menu.js
│   │   │   │   │   │   │   ├── jquery.menubutton.js
│   │   │   │   │   │   │   ├── jquery.messager.js
│   │   │   │   │   │   │   ├── jquery.mobile.js
│   │   │   │   │   │   │   ├── jquery.numberbox.js
│   │   │   │   │   │   │   ├── jquery.numberspinner.js
│   │   │   │   │   │   │   ├── jquery.pagination.js
│   │   │   │   │   │   │   ├── jquery.panel.js
│   │   │   │   │   │   │   ├── jquery.parser.js
│   │   │   │   │   │   │   ├── jquery.passwordbox.js
│   │   │   │   │   │   │   ├── jquery.progressbar.js
│   │   │   │   │   │   │   ├── jquery.propertygrid.js
│   │   │   │   │   │   │   ├── jquery.radiobutton.js
│   │   │   │   │   │   │   ├── jquery.resizable.js
│   │   │   │   │   │   │   ├── jquery.searchbox.js
│   │   │   │   │   │   │   ├── jquery.sidemenu.js
│   │   │   │   │   │   │   ├── jquery.slider.js
│   │   │   │   │   │   │   ├── jquery.spinner.js
│   │   │   │   │   │   │   ├── jquery.splitbutton.js
│   │   │   │   │   │   │   ├── jquery.switchbutton.js
│   │   │   │   │   │   │   ├── jquery.tabs.js
│   │   │   │   │   │   │   ├── jquery.tagbox.js
│   │   │   │   │   │   │   ├── jquery.textbox.js
│   │   │   │   │   │   │   ├── jquery.timespinner.js
│   │   │   │   │   │   │   ├── jquery.tooltip.js
│   │   │   │   │   │   │   ├── jquery.tree.js
│   │   │   │   │   │   │   ├── jquery.treegrid.js
│   │   │   │   │   │   │   ├── jquery.validatebox.js
│   │   │   │   │   │   │   └── jquery.window.js
│   │   │   │   │   │   └── themes
│   │   │   │   │   │       ├── angular.css
│   │   │   │   │   │       ├── black
│   │   │   │   │   │       │   ├── accordion.css
│   │   │   │   │   │       │   ├── calendar.css
│   │   │   │   │   │       │   ├── checkbox.css
│   │   │   │   │   │       │   ├── combo.css
│   │   │   │   │   │       │   ├── combobox.css
│   │   │   │   │   │       │   ├── datagrid.css
│   │   │   │   │   │       │   ├── datalist.css
│   │   │   │   │   │       │   ├── datebox.css
│   │   │   │   │   │       │   ├── dialog.css
│   │   │   │   │   │       │   ├── easyui.css
│   │   │   │   │   │       │   ├── filebox.css
│   │   │   │   │   │       │   ├── images
│   │   │   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │   │   │       │   │   ├── blank.gif
│   │   │   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │   │   │       │   │   ├── loading.gif
│   │   │   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │   │   │       │   │   ├── messager_icons.png
│   │   │   │   │   │       │   │   ├── pagination_icons.png
│   │   │   │   │   │       │   │   ├── panel_tools.png
│   │   │   │   │   │       │   │   ├── passwordbox_close.png
│   │   │   │   │   │       │   │   ├── passwordbox_open.png
│   │   │   │   │   │       │   │   ├── searchbox_button.png
│   │   │   │   │   │       │   │   ├── slider_handle.png
│   │   │   │   │   │       │   │   ├── spinner_arrows.png
│   │   │   │   │   │       │   │   ├── tabs_icons.png
│   │   │   │   │   │       │   │   ├── tagbox_icons.png
│   │   │   │   │   │       │   │   ├── tree_icons.png
│   │   │   │   │   │       │   │   └── validatebox_warning.png
│   │   │   │   │   │       │   ├── layout.css
│   │   │   │   │   │       │   ├── linkbutton.css
│   │   │   │   │   │       │   ├── menu.css
│   │   │   │   │   │       │   ├── menubutton.css
│   │   │   │   │   │       │   ├── messager.css
│   │   │   │   │   │       │   ├── numberbox.css
│   │   │   │   │   │       │   ├── pagination.css
│   │   │   │   │   │       │   ├── panel.css
│   │   │   │   │   │       │   ├── passwordbox.css
│   │   │   │   │   │       │   ├── progressbar.css
│   │   │   │   │   │       │   ├── propertygrid.css
│   │   │   │   │   │       │   ├── radiobutton.css
│   │   │   │   │   │       │   ├── searchbox.css
│   │   │   │   │   │       │   ├── sidemenu.css
│   │   │   │   │   │       │   ├── slider.css
│   │   │   │   │   │       │   ├── spinner.css
│   │   │   │   │   │       │   ├── splitbutton.css
│   │   │   │   │   │       │   ├── switchbutton.css
│   │   │   │   │   │       │   ├── tabs.css
│   │   │   │   │   │       │   ├── tagbox.css
│   │   │   │   │   │       │   ├── textbox.css
│   │   │   │   │   │       │   ├── tooltip.css
│   │   │   │   │   │       │   ├── tree.css
│   │   │   │   │   │       │   ├── validatebox.css
│   │   │   │   │   │       │   └── window.css
│   │   │   │   │   │       ├── bootstrap
│   │   │   │   │   │       │   ├── accordion.css
│   │   │   │   │   │       │   ├── calendar.css
│   │   │   │   │   │       │   ├── checkbox.css
│   │   │   │   │   │       │   ├── combo.css
│   │   │   │   │   │       │   ├── combobox.css
│   │   │   │   │   │       │   ├── datagrid.css
│   │   │   │   │   │       │   ├── datalist.css
│   │   │   │   │   │       │   ├── datebox.css
│   │   │   │   │   │       │   ├── dialog.css
│   │   │   │   │   │       │   ├── easyui.css
│   │   │   │   │   │       │   ├── filebox.css
│   │   │   │   │   │       │   ├── images
│   │   │   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │   │   │       │   │   ├── blank.gif
│   │   │   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │   │   │       │   │   ├── loading.gif
│   │   │   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │   │   │       │   │   ├── messager_icons.png
│   │   │   │   │   │       │   │   ├── pagination_icons.png
│   │   │   │   │   │       │   │   ├── panel_tools.png
│   │   │   │   │   │       │   │   ├── passwordbox_close.png
│   │   │   │   │   │       │   │   ├── passwordbox_open.png
│   │   │   │   │   │       │   │   ├── searchbox_button.png
│   │   │   │   │   │       │   │   ├── slider_handle.png
│   │   │   │   │   │       │   │   ├── spinner_arrows.png
│   │   │   │   │   │       │   │   ├── tabs_icons.png
│   │   │   │   │   │       │   │   ├── tagbox_icons.png
│   │   │   │   │   │       │   │   ├── tree_icons.png
│   │   │   │   │   │       │   │   └── validatebox_warning.png
│   │   │   │   │   │       │   ├── layout.css
│   │   │   │   │   │       │   ├── linkbutton.css
│   │   │   │   │   │       │   ├── menu.css
│   │   │   │   │   │       │   ├── menubutton.css
│   │   │   │   │   │       │   ├── messager.css
│   │   │   │   │   │       │   ├── numberbox.css
│   │   │   │   │   │       │   ├── pagination.css
│   │   │   │   │   │       │   ├── panel.css
│   │   │   │   │   │       │   ├── passwordbox.css
│   │   │   │   │   │       │   ├── progressbar.css
│   │   │   │   │   │       │   ├── propertygrid.css
│   │   │   │   │   │       │   ├── radiobutton.css
│   │   │   │   │   │       │   ├── searchbox.css
│   │   │   │   │   │       │   ├── sidemenu.css
│   │   │   │   │   │       │   ├── slider.css
│   │   │   │   │   │       │   ├── spinner.css
│   │   │   │   │   │       │   ├── splitbutton.css
│   │   │   │   │   │       │   ├── switchbutton.css
│   │   │   │   │   │       │   ├── tabs.css
│   │   │   │   │   │       │   ├── tagbox.css
│   │   │   │   │   │       │   ├── textbox.css
│   │   │   │   │   │       │   ├── tooltip.css
│   │   │   │   │   │       │   ├── tree.css
│   │   │   │   │   │       │   ├── validatebox.css
│   │   │   │   │   │       │   └── window.css
│   │   │   │   │   │       ├── color.css
│   │   │   │   │   │       ├── default
│   │   │   │   │   │       │   ├── accordion.css
│   │   │   │   │   │       │   ├── calendar.css
│   │   │   │   │   │       │   ├── checkbox.css
│   │   │   │   │   │       │   ├── combo.css
│   │   │   │   │   │       │   ├── combobox.css
│   │   │   │   │   │       │   ├── datagrid.css
│   │   │   │   │   │       │   ├── datalist.css
│   │   │   │   │   │       │   ├── datebox.css
│   │   │   │   │   │       │   ├── dialog.css
│   │   │   │   │   │       │   ├── easyui.css
│   │   │   │   │   │       │   ├── filebox.css
│   │   │   │   │   │       │   ├── images
│   │   │   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │   │   │       │   │   ├── blank.gif
│   │   │   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │   │   │       │   │   ├── loading.gif
│   │   │   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │   │   │       │   │   ├── messager_icons.png
│   │   │   │   │   │       │   │   ├── pagination_icons.png
│   │   │   │   │   │       │   │   ├── panel_tools.png
│   │   │   │   │   │       │   │   ├── passwordbox_close.png
│   │   │   │   │   │       │   │   ├── passwordbox_open.png
│   │   │   │   │   │       │   │   ├── searchbox_button.png
│   │   │   │   │   │       │   │   ├── slider_handle.png
│   │   │   │   │   │       │   │   ├── spinner_arrows.png
│   │   │   │   │   │       │   │   ├── tabs_icons.png
│   │   │   │   │   │       │   │   ├── tagbox_icons.png
│   │   │   │   │   │       │   │   ├── tree_icons.png
│   │   │   │   │   │       │   │   └── validatebox_warning.png
│   │   │   │   │   │       │   ├── layout.css
│   │   │   │   │   │       │   ├── linkbutton.css
│   │   │   │   │   │       │   ├── menu.css
│   │   │   │   │   │       │   ├── menubutton.css
│   │   │   │   │   │       │   ├── messager.css
│   │   │   │   │   │       │   ├── numberbox.css
│   │   │   │   │   │       │   ├── pagination.css
│   │   │   │   │   │       │   ├── panel.css
│   │   │   │   │   │       │   ├── passwordbox.css
│   │   │   │   │   │       │   ├── progressbar.css
│   │   │   │   │   │       │   ├── propertygrid.css
│   │   │   │   │   │       │   ├── radiobutton.css
│   │   │   │   │   │       │   ├── searchbox.css
│   │   │   │   │   │       │   ├── sidemenu.css
│   │   │   │   │   │       │   ├── slider.css
│   │   │   │   │   │       │   ├── spinner.css
│   │   │   │   │   │       │   ├── splitbutton.css
│   │   │   │   │   │       │   ├── switchbutton.css
│   │   │   │   │   │       │   ├── tabs.css
│   │   │   │   │   │       │   ├── tagbox.css
│   │   │   │   │   │       │   ├── textbox.css
│   │   │   │   │   │       │   ├── tooltip.css
│   │   │   │   │   │       │   ├── tree.css
│   │   │   │   │   │       │   ├── validatebox.css
│   │   │   │   │   │       │   └── window.css
│   │   │   │   │   │       ├── gray
│   │   │   │   │   │       │   ├── accordion.css
│   │   │   │   │   │       │   ├── calendar.css
│   │   │   │   │   │       │   ├── checkbox.css
│   │   │   │   │   │       │   ├── combo.css
│   │   │   │   │   │       │   ├── combobox.css
│   │   │   │   │   │       │   ├── datagrid.css
│   │   │   │   │   │       │   ├── datalist.css
│   │   │   │   │   │       │   ├── datebox.css
│   │   │   │   │   │       │   ├── dialog.css
│   │   │   │   │   │       │   ├── easyui.css
│   │   │   │   │   │       │   ├── filebox.css
│   │   │   │   │   │       │   ├── images
│   │   │   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │   │   │       │   │   ├── blank.gif
│   │   │   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │   │   │       │   │   ├── loading.gif
│   │   │   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │   │   │       │   │   ├── messager_icons.png
│   │   │   │   │   │       │   │   ├── pagination_icons.png
│   │   │   │   │   │       │   │   ├── panel_tools.png
│   │   │   │   │   │       │   │   ├── passwordbox_close.png
│   │   │   │   │   │       │   │   ├── passwordbox_open.png
│   │   │   │   │   │       │   │   ├── searchbox_button.png
│   │   │   │   │   │       │   │   ├── slider_handle.png
│   │   │   │   │   │       │   │   ├── spinner_arrows.png
│   │   │   │   │   │       │   │   ├── tabs_icons.png
│   │   │   │   │   │       │   │   ├── tagbox_icons.png
│   │   │   │   │   │       │   │   ├── tree_icons.png
│   │   │   │   │   │       │   │   └── validatebox_warning.png
│   │   │   │   │   │       │   ├── layout.css
│   │   │   │   │   │       │   ├── linkbutton.css
│   │   │   │   │   │       │   ├── menu.css
│   │   │   │   │   │       │   ├── menubutton.css
│   │   │   │   │   │       │   ├── messager.css
│   │   │   │   │   │       │   ├── numberbox.css
│   │   │   │   │   │       │   ├── pagination.css
│   │   │   │   │   │       │   ├── panel.css
│   │   │   │   │   │       │   ├── passwordbox.css
│   │   │   │   │   │       │   ├── progressbar.css
│   │   │   │   │   │       │   ├── propertygrid.css
│   │   │   │   │   │       │   ├── radiobutton.css
│   │   │   │   │   │       │   ├── searchbox.css
│   │   │   │   │   │       │   ├── sidemenu.css
│   │   │   │   │   │       │   ├── slider.css
│   │   │   │   │   │       │   ├── spinner.css
│   │   │   │   │   │       │   ├── splitbutton.css
│   │   │   │   │   │       │   ├── switchbutton.css
│   │   │   │   │   │       │   ├── tabs.css
│   │   │   │   │   │       │   ├── tagbox.css
│   │   │   │   │   │       │   ├── textbox.css
│   │   │   │   │   │       │   ├── tooltip.css
│   │   │   │   │   │       │   ├── tree.css
│   │   │   │   │   │       │   ├── validatebox.css
│   │   │   │   │   │       │   └── window.css
│   │   │   │   │   │       ├── icon.css
│   │   │   │   │   │       ├── icons
│   │   │   │   │   │       │   ├── back.png
│   │   │   │   │   │       │   ├── blank.gif
│   │   │   │   │   │       │   ├── cancel.png
│   │   │   │   │   │       │   ├── clear.png
│   │   │   │   │   │       │   ├── cut.png
│   │   │   │   │   │       │   ├── edit_add.png
│   │   │   │   │   │       │   ├── edit_remove.png
│   │   │   │   │   │       │   ├── filesave.png
│   │   │   │   │   │       │   ├── filter.png
│   │   │   │   │   │       │   ├── help.png
│   │   │   │   │   │       │   ├── large_chart.png
│   │   │   │   │   │       │   ├── large_clipart.png
│   │   │   │   │   │       │   ├── large_picture.png
│   │   │   │   │   │       │   ├── large_shapes.png
│   │   │   │   │   │       │   ├── large_smartart.png
│   │   │   │   │   │       │   ├── lock.png
│   │   │   │   │   │       │   ├── man.png
│   │   │   │   │   │       │   ├── mini_add.png
│   │   │   │   │   │       │   ├── mini_edit.png
│   │   │   │   │   │       │   ├── mini_refresh.png
│   │   │   │   │   │       │   ├── more.png
│   │   │   │   │   │       │   ├── no.png
│   │   │   │   │   │       │   ├── ok.png
│   │   │   │   │   │       │   ├── pencil.png
│   │   │   │   │   │       │   ├── print.png
│   │   │   │   │   │       │   ├── redo.png
│   │   │   │   │   │       │   ├── reload.png
│   │   │   │   │   │       │   ├── search.png
│   │   │   │   │   │       │   ├── sum.png
│   │   │   │   │   │       │   ├── tip.png
│   │   │   │   │   │       │   └── undo.png
│   │   │   │   │   │       ├── material
│   │   │   │   │   │       │   ├── accordion.css
│   │   │   │   │   │       │   ├── calendar.css
│   │   │   │   │   │       │   ├── checkbox.css
│   │   │   │   │   │       │   ├── combo.css
│   │   │   │   │   │       │   ├── combobox.css
│   │   │   │   │   │       │   ├── datagrid.css
│   │   │   │   │   │       │   ├── datalist.css
│   │   │   │   │   │       │   ├── datebox.css
│   │   │   │   │   │       │   ├── dialog.css
│   │   │   │   │   │       │   ├── easyui.css
│   │   │   │   │   │       │   ├── filebox.css
│   │   │   │   │   │       │   ├── images
│   │   │   │   │   │       │   │   ├── Thumbs.db
│   │   │   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │   │   │       │   │   ├── blank.gif
│   │   │   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │   │   │       │   │   ├── loading.gif
│   │   │   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │   │   │       │   │   ├── messager_icons.png
│   │   │   │   │   │       │   │   ├── pagination_icons.png
│   │   │   │   │   │       │   │   ├── panel_tools.png
│   │   │   │   │   │       │   │   ├── passwordbox_close.png
│   │   │   │   │   │       │   │   ├── passwordbox_open.png
│   │   │   │   │   │       │   │   ├── searchbox_button.png
│   │   │   │   │   │       │   │   ├── slider_handle.png
│   │   │   │   │   │       │   │   ├── spinner_arrows.png
│   │   │   │   │   │       │   │   ├── tabs_icons.png
│   │   │   │   │   │       │   │   ├── tagbox_icons.png
│   │   │   │   │   │       │   │   ├── tree_icons.png
│   │   │   │   │   │       │   │   └── validatebox_warning.png
│   │   │   │   │   │       │   ├── layout.css
│   │   │   │   │   │       │   ├── linkbutton.css
│   │   │   │   │   │       │   ├── menu.css
│   │   │   │   │   │       │   ├── menubutton.css
│   │   │   │   │   │       │   ├── messager.css
│   │   │   │   │   │       │   ├── numberbox.css
│   │   │   │   │   │       │   ├── pagination.css
│   │   │   │   │   │       │   ├── panel.css
│   │   │   │   │   │       │   ├── passwordbox.css
│   │   │   │   │   │       │   ├── progressbar.css
│   │   │   │   │   │       │   ├── propertygrid.css
│   │   │   │   │   │       │   ├── radiobutton.css
│   │   │   │   │   │       │   ├── searchbox.css
│   │   │   │   │   │       │   ├── sidemenu.css
│   │   │   │   │   │       │   ├── slider.css
│   │   │   │   │   │       │   ├── spinner.css
│   │   │   │   │   │       │   ├── splitbutton.css
│   │   │   │   │   │       │   ├── switchbutton.css
│   │   │   │   │   │       │   ├── tabs.css
│   │   │   │   │   │       │   ├── tagbox.css
│   │   │   │   │   │       │   ├── textbox.css
│   │   │   │   │   │       │   ├── tooltip.css
│   │   │   │   │   │       │   ├── tree.css
│   │   │   │   │   │       │   ├── validatebox.css
│   │   │   │   │   │       │   └── window.css
│   │   │   │   │   │       ├── material-blue
│   │   │   │   │   │       │   ├── accordion.css
│   │   │   │   │   │       │   ├── calendar.css
│   │   │   │   │   │       │   ├── checkbox.css
│   │   │   │   │   │       │   ├── combo.css
│   │   │   │   │   │       │   ├── combobox.css
│   │   │   │   │   │       │   ├── datagrid.css
│   │   │   │   │   │       │   ├── datalist.css
│   │   │   │   │   │       │   ├── datebox.css
│   │   │   │   │   │       │   ├── dialog.css
│   │   │   │   │   │       │   ├── easyui.css
│   │   │   │   │   │       │   ├── filebox.css
│   │   │   │   │   │       │   ├── images
│   │   │   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │   │   │       │   │   ├── blank.gif
│   │   │   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │   │   │       │   │   ├── loading.gif
│   │   │   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │   │   │       │   │   ├── menu_arrows1.png
│   │   │   │   │   │       │   │   ├── menu_arrows2.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
│   │   │   │   │   │       │   ├── layout.css
│   │   │   │   │   │       │   ├── linkbutton.css
│   │   │   │   │   │       │   ├── menu.css
│   │   │   │   │   │       │   ├── menubutton.css
│   │   │   │   │   │       │   ├── messager.css
│   │   │   │   │   │       │   ├── numberbox.css
│   │   │   │   │   │       │   ├── pagination.css
│   │   │   │   │   │       │   ├── panel.css
│   │   │   │   │   │       │   ├── passwordbox.css
│   │   │   │   │   │       │   ├── progressbar.css
│   │   │   │   │   │       │   ├── propertygrid.css
│   │   │   │   │   │       │   ├── radiobutton.css
│   │   │   │   │   │       │   ├── searchbox.css
│   │   │   │   │   │       │   ├── sidemenu.css
│   │   │   │   │   │       │   ├── slider.css
│   │   │   │   │   │       │   ├── spinner.css
│   │   │   │   │   │       │   ├── splitbutton.css
│   │   │   │   │   │       │   ├── switchbutton.css
│   │   │   │   │   │       │   ├── tabs.css
│   │   │   │   │   │       │   ├── tagbox.css
│   │   │   │   │   │       │   ├── textbox.css
│   │   │   │   │   │       │   ├── tooltip.css
│   │   │   │   │   │       │   ├── tree.css
│   │   │   │   │   │       │   ├── validatebox.css
│   │   │   │   │   │       │   └── window.css
│   │   │   │   │   │       ├── material-teal
│   │   │   │   │   │       │   ├── accordion.css
│   │   │   │   │   │       │   ├── calendar.css
│   │   │   │   │   │       │   ├── checkbox.css
│   │   │   │   │   │       │   ├── combo.css
│   │   │   │   │   │       │   ├── combobox.css
│   │   │   │   │   │       │   ├── datagrid.css
│   │   │   │   │   │       │   ├── datalist.css
│   │   │   │   │   │       │   ├── datebox.css
│   │   │   │   │   │       │   ├── dialog.css
│   │   │   │   │   │       │   ├── easyui.css
│   │   │   │   │   │       │   ├── filebox.css
│   │   │   │   │   │       │   ├── images
│   │   │   │   │   │       │   │   ├── Thumbs.db
│   │   │   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │   │   │       │   │   ├── blank.gif
│   │   │   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │   │   │       │   │   ├── loading.gif
│   │   │   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │   │   │       │   │   ├── messager_icons.png
│   │   │   │   │   │       │   │   ├── pagination_icons.png
│   │   │   │   │   │       │   │   ├── panel_tools.png
│   │   │   │   │   │       │   │   ├── passwordbox_close.png
│   │   │   │   │   │       │   │   ├── passwordbox_open.png
│   │   │   │   │   │       │   │   ├── searchbox_button.png
│   │   │   │   │   │       │   │   ├── slider_handle.png
│   │   │   │   │   │       │   │   ├── spinner_arrows.png
│   │   │   │   │   │       │   │   ├── tabs_icons.png
│   │   │   │   │   │       │   │   ├── tagbox_icons.png
│   │   │   │   │   │       │   │   ├── tree_icons.png
│   │   │   │   │   │       │   │   └── validatebox_warning.png
│   │   │   │   │   │       │   ├── layout.css
│   │   │   │   │   │       │   ├── linkbutton.css
│   │   │   │   │   │       │   ├── menu.css
│   │   │   │   │   │       │   ├── menubutton.css
│   │   │   │   │   │       │   ├── messager.css
│   │   │   │   │   │       │   ├── numberbox.css
│   │   │   │   │   │       │   ├── pagination.css
│   │   │   │   │   │       │   ├── panel.css
│   │   │   │   │   │       │   ├── passwordbox.css
│   │   │   │   │   │       │   ├── progressbar.css
│   │   │   │   │   │       │   ├── propertygrid.css
│   │   │   │   │   │       │   ├── radiobutton.css
│   │   │   │   │   │       │   ├── searchbox.css
│   │   │   │   │   │       │   ├── sidemenu.css
│   │   │   │   │   │       │   ├── slider.css
│   │   │   │   │   │       │   ├── spinner.css
│   │   │   │   │   │       │   ├── splitbutton.css
│   │   │   │   │   │       │   ├── switchbutton.css
│   │   │   │   │   │       │   ├── tabs.css
│   │   │   │   │   │       │   ├── tagbox.css
│   │   │   │   │   │       │   ├── textbox.css
│   │   │   │   │   │       │   ├── tooltip.css
│   │   │   │   │   │       │   ├── tree.css
│   │   │   │   │   │       │   ├── validatebox.css
│   │   │   │   │   │       │   └── window.css
│   │   │   │   │   │       ├── metro
│   │   │   │   │   │       │   ├── accordion.css
│   │   │   │   │   │       │   ├── calendar.css
│   │   │   │   │   │       │   ├── checkbox.css
│   │   │   │   │   │       │   ├── combo.css
│   │   │   │   │   │       │   ├── combobox.css
│   │   │   │   │   │       │   ├── datagrid.css
│   │   │   │   │   │       │   ├── datalist.css
│   │   │   │   │   │       │   ├── datebox.css
│   │   │   │   │   │       │   ├── dialog.css
│   │   │   │   │   │       │   ├── easyui.css
│   │   │   │   │   │       │   ├── filebox.css
│   │   │   │   │   │       │   ├── images
│   │   │   │   │   │       │   │   ├── accordion_arrows.png
│   │   │   │   │   │       │   │   ├── blank.gif
│   │   │   │   │   │       │   │   ├── calendar_arrows.png
│   │   │   │   │   │       │   │   ├── combo_arrow.png
│   │   │   │   │   │       │   │   ├── datagrid_icons.png
│   │   │   │   │   │       │   │   ├── datebox_arrow.png
│   │   │   │   │   │       │   │   ├── layout_arrows.png
│   │   │   │   │   │       │   │   ├── linkbutton_bg.png
│   │   │   │   │   │       │   │   ├── loading.gif
│   │   │   │   │   │       │   │   ├── menu_arrows.png
│   │   │   │   │   │       │   │   ├── messager_icons.png
│   │   │   │   │   │       │   │   ├── pagination_icons.png
│   │   │   │   │   │       │   │   ├── panel_tools.png
│   │   │   │   │   │       │   │   ├── passwordbox_close.png
│   │   │   │   │   │       │   │   ├── passwordbox_open.png
│   │   │   │   │   │       │   │   ├── searchbox_button.png
│   │   │   │   │   │       │   │   ├── slider_handle.png
│   │   │   │   │   │       │   │   ├── spinner_arrows.png
│   │   │   │   │   │       │   │   ├── tabs_icons.png
│   │   │   │   │   │       │   │   ├── tagbox_icons.png
│   │   │   │   │   │       │   │   ├── tree_icons.png
│   │   │   │   │   │       │   │   └── validatebox_warning.png
│   │   │   │   │   │       │   ├── layout.css
│   │   │   │   │   │       │   ├── linkbutton.css
│   │   │   │   │   │       │   ├── menu.css
│   │   │   │   │   │       │   ├── menubutton.css
│   │   │   │   │   │       │   ├── messager.css
│   │   │   │   │   │       │   ├── numberbox.css
│   │   │   │   │   │       │   ├── pagination.css
│   │   │   │   │   │       │   ├── panel.css
│   │   │   │   │   │       │   ├── passwordbox.css
│   │   │   │   │   │       │   ├── progressbar.css
│   │   │   │   │   │       │   ├── propertygrid.css
│   │   │   │   │   │       │   ├── radiobutton.css
│   │   │   │   │   │       │   ├── searchbox.css
│   │   │   │   │   │       │   ├── sidemenu.css
│   │   │   │   │   │       │   ├── slider.css
│   │   │   │   │   │       │   ├── spinner.css
│   │   │   │   │   │       │   ├── splitbutton.css
│   │   │   │   │   │       │   ├── switchbutton.css
│   │   │   │   │   │       │   ├── tabs.css
│   │   │   │   │   │       │   ├── tagbox.css
│   │   │   │   │   │       │   ├── textbox.css
│   │   │   │   │   │       │   ├── tooltip.css
│   │   │   │   │   │       │   ├── tree.css
│   │   │   │   │   │       │   ├── validatebox.css
│   │   │   │   │   │       │   └── window.css
│   │   │   │   │   │       ├── mobile.css
│   │   │   │   │   │       ├── react.css
│   │   │   │   │   │       └── vue.css
│   │   │   │   │   ├── echarts
│   │   │   │   │   │   └── echarts.min.js
│   │   │   │   │   ├── font-awesome
│   │   │   │   │   │   ├── HELP-US-OUT.txt
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   ├── font-awesome.css
│   │   │   │   │   │   │   └── font-awesome.min.css
│   │   │   │   │   │   ├── fonts
│   │   │   │   │   │   │   ├── FontAwesome.otf
│   │   │   │   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   │   │   │   ├── fontawesome-webfont.woff
│   │   │   │   │   │   │   └── fontawesome-webfont.woff2
│   │   │   │   │   │   ├── less
│   │   │   │   │   │   │   ├── animated.less
│   │   │   │   │   │   │   ├── bordered-pulled.less
│   │   │   │   │   │   │   ├── core.less
│   │   │   │   │   │   │   ├── fixed-width.less
│   │   │   │   │   │   │   ├── font-awesome.less
│   │   │   │   │   │   │   ├── icons.less
│   │   │   │   │   │   │   ├── larger.less
│   │   │   │   │   │   │   ├── list.less
│   │   │   │   │   │   │   ├── mixins.less
│   │   │   │   │   │   │   ├── path.less
│   │   │   │   │   │   │   ├── rotated-flipped.less
│   │   │   │   │   │   │   ├── screen-reader.less
│   │   │   │   │   │   │   ├── stacked.less
│   │   │   │   │   │   │   └── variables.less
│   │   │   │   │   │   └── scss
│   │   │   │   │   │       ├── _animated.scss
│   │   │   │   │   │       ├── _bordered-pulled.scss
│   │   │   │   │   │       ├── _core.scss
│   │   │   │   │   │       ├── _fixed-width.scss
│   │   │   │   │   │       ├── _icons.scss
│   │   │   │   │   │       ├── _larger.scss
│   │   │   │   │   │       ├── _list.scss
│   │   │   │   │   │       ├── _mixins.scss
│   │   │   │   │   │       ├── _path.scss
│   │   │   │   │   │       ├── _rotated-flipped.scss
│   │   │   │   │   │       ├── _screen-reader.scss
│   │   │   │   │   │       ├── _stacked.scss
│   │   │   │   │   │       ├── _variables.scss
│   │   │   │   │   │       └── font-awesome.scss
│   │   │   │   │   ├── fonticon-picker
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   ├── iconpicker.eot
│   │   │   │   │   │   │   ├── iconpicker.svg
│   │   │   │   │   │   │   ├── iconpicker.ttf
│   │   │   │   │   │   │   ├── iconpicker.woff
│   │   │   │   │   │   │   ├── jquery.fonticonpicker.css
│   │   │   │   │   │   │   ├── jquery.fonticonpicker.grey.min.css
│   │   │   │   │   │   │   └── jquery.fonticonpicker.min.css
│   │   │   │   │   │   └── js
│   │   │   │   │   │       ├── fa-icon-source.js
│   │   │   │   │   │       └── jquery.fonticonpicker.min.js
│   │   │   │   │   ├── lay-formselect
│   │   │   │   │   │   ├── formSelects-v4.css
│   │   │   │   │   │   └── formSelects-v4.js
│   │   │   │   │   ├── layui
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   ├── layui.css
│   │   │   │   │   │   │   ├── layui.mobile.css
│   │   │   │   │   │   │   └── modules
│   │   │   │   │   │   │       ├── code.css
│   │   │   │   │   │   │       ├── laydate
│   │   │   │   │   │   │       │   └── default
│   │   │   │   │   │   │       │       └── laydate.css
│   │   │   │   │   │   │       ├── layer
│   │   │   │   │   │   │       │   └── default
│   │   │   │   │   │   │       │       ├── icon-ext.png
│   │   │   │   │   │   │       │       ├── icon.png
│   │   │   │   │   │   │       │       ├── layer.css
│   │   │   │   │   │   │       │       ├── loading-0.gif
│   │   │   │   │   │   │       │       ├── loading-1.gif
│   │   │   │   │   │   │       │       └── loading-2.gif
│   │   │   │   │   │   │       └── res
│   │   │   │   │   │   │           └── logo.png
│   │   │   │   │   │   ├── font
│   │   │   │   │   │   │   ├── iconfont.eot
│   │   │   │   │   │   │   ├── iconfont.svg
│   │   │   │   │   │   │   ├── iconfont.ttf
│   │   │   │   │   │   │   ├── iconfont.woff
│   │   │   │   │   │   │   └── iconfont.woff2
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   └── face
│   │   │   │   │   │   │       ├── 0.gif
│   │   │   │   │   │   │       ├── 1.gif
│   │   │   │   │   │   │       ├── 10.gif
│   │   │   │   │   │   │       ├── 11.gif
│   │   │   │   │   │   │       ├── 12.gif
│   │   │   │   │   │   │       ├── 13.gif
│   │   │   │   │   │   │       ├── 14.gif
│   │   │   │   │   │   │       ├── 15.gif
│   │   │   │   │   │   │       ├── 16.gif
│   │   │   │   │   │   │       ├── 17.gif
│   │   │   │   │   │   │       ├── 18.gif
│   │   │   │   │   │   │       ├── 19.gif
│   │   │   │   │   │   │       ├── 2.gif
│   │   │   │   │   │   │       ├── 20.gif
│   │   │   │   │   │   │       ├── 21.gif
│   │   │   │   │   │   │       ├── 22.gif
│   │   │   │   │   │   │       ├── 23.gif
│   │   │   │   │   │   │       ├── 24.gif
│   │   │   │   │   │   │       ├── 25.gif
│   │   │   │   │   │   │       ├── 26.gif
│   │   │   │   │   │   │       ├── 27.gif
│   │   │   │   │   │   │       ├── 28.gif
│   │   │   │   │   │   │       ├── 29.gif
│   │   │   │   │   │   │       ├── 3.gif
│   │   │   │   │   │   │       ├── 30.gif
│   │   │   │   │   │   │       ├── 31.gif
│   │   │   │   │   │   │       ├── 32.gif
│   │   │   │   │   │   │       ├── 33.gif
│   │   │   │   │   │   │       ├── 34.gif
│   │   │   │   │   │   │       ├── 35.gif
│   │   │   │   │   │   │       ├── 36.gif
│   │   │   │   │   │   │       ├── 37.gif
│   │   │   │   │   │   │       ├── 38.gif
│   │   │   │   │   │   │       ├── 39.gif
│   │   │   │   │   │   │       ├── 4.gif
│   │   │   │   │   │   │       ├── 40.gif
│   │   │   │   │   │   │       ├── 41.gif
│   │   │   │   │   │   │       ├── 42.gif
│   │   │   │   │   │   │       ├── 43.gif
│   │   │   │   │   │   │       ├── 44.gif
│   │   │   │   │   │   │       ├── 45.gif
│   │   │   │   │   │   │       ├── 46.gif
│   │   │   │   │   │   │       ├── 47.gif
│   │   │   │   │   │   │       ├── 48.gif
│   │   │   │   │   │   │       ├── 49.gif
│   │   │   │   │   │   │       ├── 5.gif
│   │   │   │   │   │   │       ├── 50.gif
│   │   │   │   │   │   │       ├── 51.gif
│   │   │   │   │   │   │       ├── 52.gif
│   │   │   │   │   │   │       ├── 53.gif
│   │   │   │   │   │   │       ├── 54.gif
│   │   │   │   │   │   │       ├── 55.gif
│   │   │   │   │   │   │       ├── 56.gif
│   │   │   │   │   │   │       ├── 57.gif
│   │   │   │   │   │   │       ├── 58.gif
│   │   │   │   │   │   │       ├── 59.gif
│   │   │   │   │   │   │       ├── 6.gif
│   │   │   │   │   │   │       ├── 60.gif
│   │   │   │   │   │   │       ├── 61.gif
│   │   │   │   │   │   │       ├── 62.gif
│   │   │   │   │   │   │       ├── 63.gif
│   │   │   │   │   │   │       ├── 64.gif
│   │   │   │   │   │   │       ├── 65.gif
│   │   │   │   │   │   │       ├── 66.gif
│   │   │   │   │   │   │       ├── 67.gif
│   │   │   │   │   │   │       ├── 68.gif
│   │   │   │   │   │   │       ├── 69.gif
│   │   │   │   │   │   │       ├── 7.gif
│   │   │   │   │   │   │       ├── 70.gif
│   │   │   │   │   │   │       ├── 71.gif
│   │   │   │   │   │   │       ├── 8.gif
│   │   │   │   │   │   │       └── 9.gif
│   │   │   │   │   │   ├── lay
│   │   │   │   │   │   │   └── modules
│   │   │   │   │   │   │       ├── carousel.js
│   │   │   │   │   │   │       ├── code.js
│   │   │   │   │   │   │       ├── colorpicker.js
│   │   │   │   │   │   │       ├── element.js
│   │   │   │   │   │   │       ├── flow.js
│   │   │   │   │   │   │       ├── form.js
│   │   │   │   │   │   │       ├── jquery.js
│   │   │   │   │   │   │       ├── laydate.js
│   │   │   │   │   │   │       ├── layedit-原版.js
│   │   │   │   │   │   │       ├── layedit.js
│   │   │   │   │   │   │       ├── layer.js
│   │   │   │   │   │   │       ├── laypage.js
│   │   │   │   │   │   │       ├── laytpl.js
│   │   │   │   │   │   │       ├── mobile.js
│   │   │   │   │   │   │       ├── rate.js
│   │   │   │   │   │   │       ├── slider.js
│   │   │   │   │   │   │       ├── table.js
│   │   │   │   │   │   │       ├── transfer.js
│   │   │   │   │   │   │       ├── tree.js
│   │   │   │   │   │   │       ├── upload.js
│   │   │   │   │   │   │       └── util.js
│   │   │   │   │   │   ├── layui.all.js
│   │   │   │   │   │   └── layui.js
│   │   │   │   │   ├── summernote
│   │   │   │   │   │   ├── font
│   │   │   │   │   │   │   └── summernote.woff
│   │   │   │   │   │   ├── summernote-0.8.8.css
│   │   │   │   │   │   ├── summernote-bs3.css
│   │   │   │   │   │   └── summernote.css
│   │   │   │   │   ├── treetable-lay
│   │   │   │   │   │   ├── menus.json
│   │   │   │   │   │   ├── treetable.css
│   │   │   │   │   │   └── treetable.js
│   │   │   │   │   └── ztree
│   │   │   │   │       ├── css
│   │   │   │   │       │   ├── awesomeStyle
│   │   │   │   │       │   │   ├── awesome.css
│   │   │   │   │       │   │   ├── awesome.less
│   │   │   │   │       │   │   ├── fa.less
│   │   │   │   │       │   │   └── img
│   │   │   │   │       │   │       └── loading.gif
│   │   │   │   │       │   ├── demo.css
│   │   │   │   │       │   ├── metroStyle
│   │   │   │   │       │   │   ├── img
│   │   │   │   │       │   │   │   ├── line_conn.png
│   │   │   │   │       │   │   │   ├── loading.gif
│   │   │   │   │       │   │   │   ├── metro.gif
│   │   │   │   │       │   │   │   └── metro.png
│   │   │   │   │       │   │   └── metroStyle.css
│   │   │   │   │       │   └── zTreeStyle
│   │   │   │   │       │       ├── img
│   │   │   │   │       │       │   ├── diy
│   │   │   │   │       │       │   │   ├── 1_close.png
│   │   │   │   │       │       │   │   ├── 1_open.png
│   │   │   │   │       │       │   │   ├── 2.png
│   │   │   │   │       │       │   │   ├── 3.png
│   │   │   │   │       │       │   │   ├── 4.png
│   │   │   │   │       │       │   │   ├── 5.png
│   │   │   │   │       │       │   │   ├── 6.png
│   │   │   │   │       │       │   │   ├── 7.png
│   │   │   │   │       │       │   │   ├── 8.png
│   │   │   │   │       │       │   │   └── 9.png
│   │   │   │   │       │       │   ├── line_conn.gif
│   │   │   │   │       │       │   ├── loading.gif
│   │   │   │   │       │       │   ├── zTreeStandard.gif
│   │   │   │   │       │       │   └── zTreeStandard.png
│   │   │   │   │       │       └── zTreeStyle.css
│   │   │   │   │       └── js
│   │   │   │   │           └── jquery.ztree.all.min.js
│   │   │   │   └── upload
│   │   │   └── templates
│   │   │       ├── 403.html
│   │   │       ├── 404.html
│   │   │       ├── apprelease.html
│   │   │       ├── common
│   │   │       │   ├── base.html
│   │   │       │   └── sys_tpl.html
│   │   │       ├── generator
│   │   │       │   ├── defaultButtonConfig.json
│   │   │       │   ├── setting.html
│   │   │       │   ├── table.html
│   │   │       │   └── vm
│   │   │       │       ├── controller.vm
│   │   │       │       ├── entity.vm
│   │   │       │       ├── mapper.vm
│   │   │       │       ├── mapperXml.vm
│   │   │       │       ├── operation.vm
│   │   │       │       ├── service.vm
│   │   │       │       ├── serviceImpl.vm
│   │   │       │       ├── table.vm
│   │   │       │       └── treegrid.vm
│   │   │       ├── home.html
│   │   │       ├── homeone.html
│   │   │       ├── index.html
│   │   │       ├── index.html.bak
│   │   │       ├── kh
│   │   │       │   ├── board.html
│   │   │       │   ├── board_edit.html
│   │   │       │   ├── checkbase.html
│   │   │       │   ├── checkbase_edit.html
│   │   │       │   ├── checkdata.html
│   │   │       │   ├── checkdata_edit.html
│   │   │       │   ├── checkdatadetail.html
│   │   │       │   ├── checkdatadetail_edit.html
│   │   │       │   ├── checksetting.html
│   │   │       │   ├── checksetting_edit.html
│   │   │       │   ├── news.html
│   │   │       │   ├── news_edit.html
│   │   │       │   ├── routinerecord.html
│   │   │       │   ├── routinerecord_edit.html
│   │   │       │   ├── routinerecorddetail.html
│   │   │       │   └── routinerecorddetail_edit.html
│   │   │       ├── login.html
│   │   │       ├── mobile.html
│   │   │       ├── schedule
│   │   │       │   ├── job.html
│   │   │       │   └── job_edit.html
│   │   │       ├── sys
│   │   │       │   ├── dept.html
│   │   │       │   ├── dept_edit.html
│   │   │       │   ├── dict.html
│   │   │       │   ├── dict_edit.html
│   │   │       │   ├── log.html
│   │   │       │   ├── menu.html
│   │   │       │   ├── menu_edit.html
│   │   │       │   ├── role.html
│   │   │       │   ├── role_edit.html
│   │   │       │   ├── role_permission.html
│   │   │       │   ├── user.html
│   │   │       │   ├── user_backup.html
│   │   │       │   ├── user_edit.html
│   │   │       │   ├── user_info.html
│   │   │       │   ├── user_info.html.bak
│   │   │       │   ├── user_pwd.html
│   │   │       │   ├── user_role.html
│   │   │       │   ├── user_sel.html
│   │   │       │   ├── usersign.html
│   │   │       │   └── usersign_edit.html
│   │   │       ├── test.html
│   │   │       ├── test1.html
│   │   │       └── yx
│   │   │           ├── board.html
│   │   │           ├── board_edit.html
│   │   │           ├── checkbase.html
│   │   │           ├── checkbase_edit.html
│   │   │           ├── checkdata.html
│   │   │           ├── checkdata_edit.html
│   │   │           ├── checkdatadetail.html
│   │   │           ├── checkdatadetail_edit.html
│   │   │           ├── checksetting.html
│   │   │           ├── checksetting_edit.html
│   │   │           ├── news.html
│   │   │           ├── news_edit.html
│   │   │           ├── order.html
│   │   │           ├── order_edit.html
│   │   │           ├── posting.html
│   │   │           ├── posting_edit.html
│   │   │           ├── routinerecord.html
│   │   │           ├── routinerecord_edit.html
│   │   │           ├── routinerecorddetail.html
│   │   │           ├── routinerecorddetail_edit.html
│   │   │           ├── shop.html
│   │   │           ├── shop_edit.html
│   │   │           ├── subscribe.html
│   │   │           └── subscribe_edit.html
│   │   └── webapp
│   └── test
│       ├── 123.html
│       └── java
│           └── com
│               └── kalvin
│                   └── kvf
│                       ├── BaseJunitTest.java
│                       ├── KvfAdminApplicationTests.java
│                       └── MyTest.java
├── wechat.properties
└── weibo.properties

148 directories, 1458 files



标签: java ja

实例下载地址

java springboot mybatis plus

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警