在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例WEB/WAP应用开发 → 驾K助手

驾K助手

WEB/WAP应用开发

下载此实例
  • 开发语言:Java
  • 实例大小:89.20M
  • 下载次数:25
  • 浏览次数:253
  • 发布时间:2021-12-27
  • 实例类别:WEB/WAP应用开发
  • 发 布 人:jiakaoxcx
  • 文件格式:.zip
  • 所需积分:0
 相关标签: 小程序 驾考 学习 答题

实例介绍

【实例简介】驾K助手

驾K助手是一款为即将考取驾驶执照的用户提供驾考知识学习,模拟试题练习的一款小程序。旨在帮助“准驾驶员”成功通过驾照考试科目一与科目四的实用工具。通过在线做题与错题答疑,提升驾照考试通过率。该源码分为前后台。如需交流,请联系:15590850358
【实例截图】


【核心代码】.
├── jiakaoweb
│   ├── LICENSE
│   ├── ReadMe.md
│   ├── jiakao.iml
│   ├── log
│   │   ├── error
│   │   │   ├── error.2021-11-22.log
│   │   │   ├── error.2021-11-24.log
│   │   │   ├── error.2021-11-25.log
│   │   │   ├── error.2021-11-28.log
│   │   │   ├── error.2021-12-02.log
│   │   │   ├── error.2021-12-03.log
│   │   │   ├── error.2021-12-05.log
│   │   │   ├── error.2021-12-23.log
│   │   │   ├── error.2021-12-24.log
│   │   │   ├── error.2021-12-25.log
│   │   │   └── error.2021-12-26.log
│   │   └── info
│   │       ├── info.2021-11-22.log
│   │       ├── info.2021-11-23.log
│   │       ├── info.2021-11-24.log
│   │       ├── info.2021-11-25.log
│   │       ├── info.2021-11-26.log
│   │       ├── info.2021-11-27.log
│   │       ├── info.2021-11-28.log
│   │       ├── info.2021-11-29.log
│   │       ├── info.2021-12-02.log
│   │       ├── info.2021-12-03.log
│   │       ├── info.2021-12-05.log
│   │       ├── info.2021-12-23.log
│   │       ├── info.2021-12-24.log
│   │       ├── info.2021-12-25.log
│   │       └── info.2021-12-26.log
│   ├── pom.xml
│   ├── screenshot
│   │   ├── QQ.jpg
│   │   ├── jetbrains.png
│   │   ├── mobile_screenshot_1.jpg
│   │   ├── mobile_screenshot_2.jpg
│   │   ├── pad_screenshot_1.jpg
│   │   ├── pad_screenshot_2.jpg
│   │   ├── pad_screenshot_3.jpg
│   │   ├── pc_screenshot_1.jpg
│   │   ├── pc_screenshot_2.jpg
│   │   ├── pc_screenshot_3.jpg
│   │   ├── pc_screenshot_4.jpg
│   │   ├── pc_screenshot_5.jpg
│   │   ├── pc_screenshot_6.jpg
│   │   └── treatme.jpg
│   ├── sql
│   │   ├── febs_base.sql
│   │   └── febs_quartz.sql
│   ├── src
│   │   └── main
│   │       ├── java
│   │       │   └── cc
│   │       │       └── mrbird
│   │       │           └── febs
│   │       │               ├── FebsShiroApplication.java
│   │       │               ├── common
│   │       │               │   ├── annotation
│   │       │               │   │   ├── ControllerEndpoint.java
│   │       │               │   │   ├── DataPermission.java
│   │       │               │   │   ├── FebsEndPoint.java
│   │       │               │   │   ├── Helper.java
│   │       │               │   │   ├── IsCron.java
│   │       │               │   │   ├── IsMobile.java
│   │       │               │   │   └── Limit.java
│   │       │               │   ├── aspect
│   │       │               │   │   ├── BaseAspectSupport.java
│   │       │               │   │   ├── ControllerEndpointAspect.java
│   │       │               │   │   └── LimitAspect.java
│   │       │               │   ├── authentication
│   │       │               │   │   ├── ShiroConfig.java
│   │       │               │   │   ├── ShiroHelper.java
│   │       │               │   │   ├── ShiroRealm.java
│   │       │               │   │   └── ShiroSessionListener.java
│   │       │               │   ├── configure
│   │       │               │   │   ├── FebsConfigure.java
│   │       │               │   │   ├── MybatisPlusConfigure.java
│   │       │               │   │   ├── P6spySqlFormatConfigure.java
│   │       │               │   │   └── RedisConfigure.java
│   │       │               │   ├── controller
│   │       │               │   │   └── BaseController.java
│   │       │               │   ├── converter
│   │       │               │   │   └── TimeConverter.java
│   │       │               │   ├── entity
│   │       │               │   │   ├── DeptTree.java
│   │       │               │   │   ├── FebsConstant.java
│   │       │               │   │   ├── FebsResponse.java
│   │       │               │   │   ├── ImageType.java
│   │       │               │   │   ├── LimitType.java
│   │       │               │   │   ├── MenuTree.java
│   │       │               │   │   ├── QueryRequest.java
│   │       │               │   │   └── Regexp.java
│   │       │               │   ├── exception
│   │       │               │   │   ├── FebsException.java
│   │       │               │   │   ├── FileDownloadException.java
│   │       │               │   │   ├── GeneratorException.java
│   │       │               │   │   ├── LimitAccessException.java
│   │       │               │   │   └── RedisConnectException.java
│   │       │               │   ├── handler
│   │       │               │   │   └── GlobalExceptionHandler.java
│   │       │               │   ├── interceptor
│   │       │               │   │   └── DataPermissionInterceptor.java
│   │       │               │   ├── properties
│   │       │               │   │   ├── FebsProperties.java
│   │       │               │   │   ├── ShiroProperties.java
│   │       │               │   │   ├── SwaggerProperties.java
│   │       │               │   │   └── ValidateCodeProperties.java
│   │       │               │   ├── runner
│   │       │               │   │   └── FebsStartedUpRunner.java
│   │       │               │   ├── service
│   │       │               │   │   ├── RedisService.java
│   │       │               │   │   └── ValidateCodeService.java
│   │       │               │   ├── utils
│   │       │               │   │   ├── AddressUtil.java
│   │       │               │   │   ├── DateUtil.java
│   │       │               │   │   ├── FebsUtil.java
│   │       │               │   │   ├── FileUtil.java
│   │       │               │   │   ├── HttpContextUtil.java
│   │       │               │   │   ├── HttpUtils.java
│   │       │               │   │   ├── IPUtils.java
│   │       │               │   │   ├── IpUtil.java
│   │       │               │   │   ├── JsoupUtil.java
│   │       │               │   │   ├── Md5Util.java
│   │       │               │   │   ├── SnowflakeId.java
│   │       │               │   │   ├── SortUtil.java
│   │       │               │   │   ├── SpringContextUtil.java
│   │       │               │   │   └── TreeUtil.java
│   │       │               │   ├── validator
│   │       │               │   │   ├── CronValidator.java
│   │       │               │   │   └── MobileValidator.java
│   │       │               │   ├── wxpay
│   │       │               │   │   ├── IWXPayDomain.java
│   │       │               │   │   ├── MyWXPayConfig.java
│   │       │               │   │   ├── ResourceRenderer.java
│   │       │               │   │   ├── WXPay.java
│   │       │               │   │   ├── WXPayConfig.java
│   │       │               │   │   ├── WXPayConstants.java
│   │       │               │   │   ├── WXPayReport.java
│   │       │               │   │   ├── WXPayRequest.java
│   │       │               │   │   ├── WXPayUtil.java
│   │       │               │   │   └── WXPayXmlUtil.java
│   │       │               │   └── xss
│   │       │               │       ├── XssFilter.java
│   │       │               │       └── XssHttpServletRequestWrapper.java
│   │       │               ├── generator
│   │       │               │   ├── controller
│   │       │               │   │   ├── GeneratorConfigController.java
│   │       │               │   │   ├── GeneratorController.java
│   │       │               │   │   └── ViewController.java
│   │       │               │   ├── entity
│   │       │               │   │   ├── Column.java
│   │       │               │   │   ├── FieldType.java
│   │       │               │   │   ├── GeneratorConfig.java
│   │       │               │   │   ├── GeneratorConstant.java
│   │       │               │   │   └── Table.java
│   │       │               │   ├── helper
│   │       │               │   │   └── GeneratorHelper.java
│   │       │               │   ├── mapper
│   │       │               │   │   ├── GeneratorConfigMapper.java
│   │       │               │   │   └── GeneratorMapper.java
│   │       │               │   └── service
│   │       │               │       ├── IGeneratorConfigService.java
│   │       │               │       ├── IGeneratorService.java
│   │       │               │       └── impl
│   │       │               │           ├── GeneratorConfigServiceImpl.java
│   │       │               │           └── GeneratorServiceImpl.java
│   │       │               ├── job
│   │       │               │   ├── configure
│   │       │               │   │   └── ScheduleConfigure.java
│   │       │               │   ├── controller
│   │       │               │   │   ├── JobController.java
│   │       │               │   │   ├── JobLogController.java
│   │       │               │   │   └── ViewController.java
│   │       │               │   ├── entity
│   │       │               │   │   ├── Job.java
│   │       │               │   │   └── JobLog.java
│   │       │               │   ├── mapper
│   │       │               │   │   ├── JobLogMapper.java
│   │       │               │   │   └── JobMapper.java
│   │       │               │   ├── service
│   │       │               │   │   ├── IJobLogService.java
│   │       │               │   │   ├── IJobService.java
│   │       │               │   │   └── impl
│   │       │               │   │       ├── JobLogServiceImpl.java
│   │       │               │   │       └── JobServiceImpl.java
│   │       │               │   ├── task
│   │       │               │   │   └── TestTask.java
│   │       │               │   └── util
│   │       │               │       ├── ScheduleJob.java
│   │       │               │       ├── ScheduleRunnable.java
│   │       │               │       └── ScheduleUtils.java
│   │       │               ├── monitor
│   │       │               │   ├── configure
│   │       │               │   │   └── FebsMonitorConfigure.java
│   │       │               │   ├── controller
│   │       │               │   │   ├── FebsActuatorController.java
│   │       │               │   │   ├── LogController.java
│   │       │               │   │   ├── LoginLogController.java
│   │       │               │   │   ├── SessionController.java
│   │       │               │   │   └── ViewController.java
│   │       │               │   ├── endpoint
│   │       │               │   │   ├── FebsHttpTraceEndpoint.java
│   │       │               │   │   └── FebsMetricsEndpoint.java
│   │       │               │   ├── entity
│   │       │               │   │   ├── ActiveUser.java
│   │       │               │   │   ├── FebsHttpTrace.java
│   │       │               │   │   ├── JvmInfo.java
│   │       │               │   │   ├── LoginLog.java
│   │       │               │   │   ├── ServerInfo.java
│   │       │               │   │   ├── SystemLog.java
│   │       │               │   │   └── TomcatInfo.java
│   │       │               │   ├── helper
│   │       │               │   │   └── FebsActuatorHelper.java
│   │       │               │   ├── mapper
│   │       │               │   │   ├── LogMapper.java
│   │       │               │   │   └── LoginLogMapper.java
│   │       │               │   └── service
│   │       │               │       ├── ILogService.java
│   │       │               │       ├── ILoginLogService.java
│   │       │               │       ├── ISessionService.java
│   │       │               │       └── impl
│   │       │               │           ├── LogServiceImpl.java
│   │       │               │           ├── LoginLogServiceImpl.java
│   │       │               │           └── SessionServiceImpl.java
│   │       │               ├── others
│   │       │               │   ├── controller
│   │       │               │   │   ├── DataPermissionTestController.java
│   │       │               │   │   ├── EximportController.java
│   │       │               │   │   └── ViewController.java
│   │       │               │   ├── entity
│   │       │               │   │   ├── DataPermissionTest.java
│   │       │               │   │   └── Eximport.java
│   │       │               │   ├── mapper
│   │       │               │   │   ├── DataPermissionTestMapper.java
│   │       │               │   │   └── EximportMapper.java
│   │       │               │   └── service
│   │       │               │       ├── IDataPermissionTestService.java
│   │       │               │       ├── IEximportService.java
│   │       │               │       └── impl
│   │       │               │           ├── DataPermissionTestServiceImpl.java
│   │       │               │           └── EximportServiceImpl.java
│   │       │               ├── project
│   │       │               │   ├── controller
│   │       │               │   │   ├── APPWXLogin.java
│   │       │               │   │   ├── CensusController.java
│   │       │               │   │   ├── CustomerController.java
│   │       │               │   │   ├── GradeController.java
│   │       │               │   │   ├── OrderController.java
│   │       │               │   │   ├── ScarQuestionController.java
│   │       │               │   │   ├── ScarQuestionNewController.java
│   │       │               │   │   └── SuggestionController.java
│   │       │               │   ├── entity
│   │       │               │   │   ├── Census.java
│   │       │               │   │   ├── Customer.java
│   │       │               │   │   ├── Grade.java
│   │       │               │   │   ├── Order.java
│   │       │               │   │   ├── ScarQuestion.java
│   │       │               │   │   ├── ScarQuestionNew.java
│   │       │               │   │   └── Suggestion.java
│   │       │               │   ├── mapper
│   │       │               │   │   ├── CensusMapper.java
│   │       │               │   │   ├── CustomerMapper.java
│   │       │               │   │   ├── GradeMapper.java
│   │       │               │   │   ├── OrderMapper.java
│   │       │               │   │   ├── ScarQuestionMapper.java
│   │       │               │   │   ├── ScarQuestionNewMapper.java
│   │       │               │   │   └── SuggestionMapper.java
│   │       │               │   └── service
│   │       │               │       ├── ICensusService.java
│   │       │               │       ├── ICustomerService.java
│   │       │               │       ├── IGradeService.java
│   │       │               │       ├── IOrderService.java
│   │       │               │       ├── IScarQuestionNewService.java
│   │       │               │       ├── IScarQuestionService.java
│   │       │               │       ├── ISuggestionService.java
│   │       │               │       └── impl
│   │       │               │           ├── CensusServiceImpl.java
│   │       │               │           ├── CustomerServiceImpl.java
│   │       │               │           ├── GradeServiceImpl.java
│   │       │               │           ├── OrderServiceImpl.java
│   │       │               │           ├── ScarQuestionNewServiceImpl.java
│   │       │               │           ├── ScarQuestionServiceImpl.java
│   │       │               │           └── SuggestionServiceImpl.java
│   │       │               └── system
│   │       │                   ├── controller
│   │       │                   │   ├── DeptController.java
│   │       │                   │   ├── LoginController.java
│   │       │                   │   ├── MenuController.java
│   │       │                   │   ├── RoleController.java
│   │       │                   │   ├── UserController.java
│   │       │                   │   └── ViewController.java
│   │       │                   ├── entity
│   │       │                   │   ├── Dept.java
│   │       │                   │   ├── Menu.java
│   │       │                   │   ├── Role.java
│   │       │                   │   ├── RoleMenu.java
│   │       │                   │   ├── Test.java
│   │       │                   │   ├── User.java
│   │       │                   │   ├── UserDataPermission.java
│   │       │                   │   └── UserRole.java
│   │       │                   ├── mapper
│   │       │                   │   ├── DeptMapper.java
│   │       │                   │   ├── MenuMapper.java
│   │       │                   │   ├── RoleMapper.java
│   │       │                   │   ├── RoleMenuMapper.java
│   │       │                   │   ├── UserDataPermissionMapper.java
│   │       │                   │   ├── UserMapper.java
│   │       │                   │   └── UserRoleMapper.java
│   │       │                   └── service
│   │       │                       ├── IDeptService.java
│   │       │                       ├── IMenuService.java
│   │       │                       ├── IRoleMenuService.java
│   │       │                       ├── IRoleService.java
│   │       │                       ├── IUserDataPermissionService.java
│   │       │                       ├── IUserRoleService.java
│   │       │                       ├── IUserService.java
│   │       │                       └── impl
│   │       │                           ├── DeptServiceImpl.java
│   │       │                           ├── MenuServiceImpl.java
│   │       │                           ├── RoleMenuServiceImpl.java
│   │       │                           ├── RoleServiceImpl.java
│   │       │                           ├── UserDataPermissionServiceImpl.java
│   │       │                           ├── UserRoleServiceImpl.java
│   │       │                           └── UserServiceImpl.java
│   │       └── resources
│   │           ├── ValidationMessages.properties
│   │           ├── application-dev.yml
│   │           ├── application-prod.yml
│   │           ├── application-test.yml
│   │           ├── application.yml
│   │           ├── banner.txt
│   │           ├── febs.properties
│   │           ├── generator
│   │           │   └── templates
│   │           │       ├── controller.ftl
│   │           │       ├── entity.ftl
│   │           │       ├── mapper.ftl
│   │           │       ├── mapperXml.ftl
│   │           │       ├── service.ftl
│   │           │       └── serviceImpl.ftl
│   │           ├── ip2region
│   │           │   └── ip2region.db
│   │           ├── logback-spring.xml
│   │           ├── mapper
│   │           │   ├── generator
│   │           │   │   └── GeneratorMapper.xml
│   │           │   ├── job
│   │           │   │   └── JobMapper.xml
│   │           │   ├── project
│   │           │   │   ├── CensusMapper.xml
│   │           │   │   ├── CustomerMapper.xml
│   │           │   │   ├── GradeMapper.xml
│   │           │   │   ├── OrderMapper.xml
│   │           │   │   ├── ScarQuestionMapper.xml
│   │           │   │   ├── ScarQuestionNewMapper.xml
│   │           │   │   └── SuggestionMapper.xml
│   │           │   └── system
│   │           │       ├── LoginLogMapper.xml
│   │           │       ├── MenuMapper.xml
│   │           │       ├── RoleMapper.xml
│   │           │       └── UserMapper.xml
│   │           ├── spy.properties
│   │           ├── static
│   │           │   ├── febs
│   │           │   │   ├── config.js
│   │           │   │   ├── css
│   │           │   │   │   ├── apexcharts.min.css
│   │           │   │   │   ├── eleTree.css
│   │           │   │   │   ├── febs.css
│   │           │   │   │   ├── formSelects-v4.css
│   │           │   │   │   └── login.css
│   │           │   │   ├── font
│   │           │   │   │   ├── iconfont.eot
│   │           │   │   │   ├── iconfont.svg
│   │           │   │   │   ├── iconfont.ttf
│   │           │   │   │   └── iconfont.woff
│   │           │   │   ├── images
│   │           │   │   │   ├── avatar
│   │           │   │   │   │   ├── 17e420c250804efe904a09a33796d5a10.jpg
│   │           │   │   │   │   ├── 17e420c250804efe904a09a33796d5a16.jpg
│   │           │   │   │   │   ├── 19034103295190235.jpg
│   │           │   │   │   │   ├── 1d22f3e41d284f50b2c8fc32e0788698.jpeg
│   │           │   │   │   │   ├── 20180414165754.jpg
│   │           │   │   │   │   ├── 20180414165815.jpg
│   │           │   │   │   │   ├── 20180414165821.jpg
│   │           │   │   │   │   ├── 20180414165827.jpg
│   │           │   │   │   │   ├── 20180414165834.jpg
│   │           │   │   │   │   ├── 20180414165840.jpg
│   │           │   │   │   │   ├── 20180414165846.jpg
│   │           │   │   │   │   ├── 20180414165855.jpg
│   │           │   │   │   │   ├── 20180414165909.jpg
│   │           │   │   │   │   ├── 20180414165914.jpg
│   │           │   │   │   │   ├── 20180414165920.jpg
│   │           │   │   │   │   ├── 20180414165927.jpg
│   │           │   │   │   │   ├── 20180414165936.jpg
│   │           │   │   │   │   ├── 20180414165942.jpg
│   │           │   │   │   │   ├── 20180414165947.jpg
│   │           │   │   │   │   ├── 20180414165955.jpg
│   │           │   │   │   │   ├── 20180414170003.jpg
│   │           │   │   │   │   ├── 2dd7a2d09fa94bf8b5c52e5318868b4d9.jpg
│   │           │   │   │   │   ├── 2dd7a2d09fa94bf8b5c52e5318868b4df.jpg
│   │           │   │   │   │   ├── 496b3ace787342f7954b7045b8b06804.jpeg
│   │           │   │   │   │   ├── 595ba7b05f2e485eb50565a50cb6cc3c.jpeg
│   │           │   │   │   │   ├── 5997fedcc7bd4cffbd350b40d1b5b9824.jpg
│   │           │   │   │   │   ├── 5997fedcc7bd4cffbd350b40d1b5b987.jpg
│   │           │   │   │   │   ├── 87d8194bc9834e9f8f0228e9e530beb1.jpeg
│   │           │   │   │   │   ├── 8f5b60ef00714a399ee544d331231820.jpeg
│   │           │   │   │   │   ├── 964e40b005724165b8cf772355796c8c.jpeg
│   │           │   │   │   │   ├── BiazfanxmamNRoxxVxka.png
│   │           │   │   │   │   ├── WhxKECPNujWoWEFNdnJE.png
│   │           │   │   │   │   ├── a3b10296862e40edb811418d64455d00.jpeg
│   │           │   │   │   │   ├── a43456282d684e0b9319cf332f8ac468.jpeg
│   │           │   │   │   │   ├── bba284ac05b041a8b8b0d1927868d5c9x.jpg
│   │           │   │   │   │   ├── c7c4ee7be3eb4e73a19887dc713505145.jpg
│   │           │   │   │   │   ├── cnrhVkzwxjPwAaCfPbdc.png
│   │           │   │   │   │   ├── default.jpg
│   │           │   │   │   │   ├── empty.jpg
│   │           │   │   │   │   ├── ff698bb2d25c4d218b3256b46c706ece.jpeg
│   │           │   │   │   │   ├── gaOngJwsRYRaVAuXXcmB.png
│   │           │   │   │   │   ├── jZUIxmJycoymBprLOUbT.png
│   │           │   │   │   │   └── ubnKSIfAJTxIgXOKlciN.png
│   │           │   │   │   ├── background.svg
│   │           │   │   │   ├── error
│   │           │   │   │   │   ├── 403.svg
│   │           │   │   │   │   ├── 404.svg
│   │           │   │   │   │   └── 500.svg
│   │           │   │   │   ├── favicon.ico
│   │           │   │   │   ├── logo.png
│   │           │   │   │   ├── side-bar-dark.svg
│   │           │   │   │   └── side-bar-light.svg
│   │           │   │   ├── index.js
│   │           │   │   └── lay
│   │           │   │       ├── data
│   │           │   │       │   └── dataSeries.js
│   │           │   │       ├── extends
│   │           │   │       │   ├── apexcharts.min.js
│   │           │   │       │   ├── eleTree.js
│   │           │   │       │   ├── formSelects-v4.min.js
│   │           │   │       │   └── treeSelect.js
│   │           │   │       └── modules
│   │           │   │           ├── api.js
│   │           │   │           ├── dropdown.js
│   │           │   │           ├── febs.js
│   │           │   │           ├── loadBar.js
│   │           │   │           ├── validate.js
│   │           │   │           └── view.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
│   │           │       ├── 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
│   │           │       │       ├── 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
│   │           └── templates
│   │               ├── error
│   │               │   ├── 403.html
│   │               │   ├── 404.html
│   │               │   └── 500.html
│   │               ├── febs
│   │               │   └── views
│   │               │       ├── customer
│   │               │       │   └── customer.html
│   │               │       ├── error
│   │               │       │   ├── 403.html
│   │               │       │   ├── 404.html
│   │               │       │   └── 500.html
│   │               │       ├── generator
│   │               │       │   ├── configure.html
│   │               │       │   └── generator.html
│   │               │       ├── index.html
│   │               │       ├── job
│   │               │       │   ├── job.html
│   │               │       │   ├── jobAdd.html
│   │               │       │   ├── jobLog.html
│   │               │       │   └── jobUpdate.html
│   │               │       ├── layout.html
│   │               │       ├── login.html
│   │               │       ├── monitor
│   │               │       │   ├── httpTrace.html
│   │               │       │   ├── jvmInfo.html
│   │               │       │   ├── log.html
│   │               │       │   ├── loginLog.html
│   │               │       │   ├── online.html
│   │               │       │   ├── serverInfo.html
│   │               │       │   ├── swagger.html
│   │               │       │   └── tomcatInfo.html
│   │               │       ├── order
│   │               │       │   └── order.html
│   │               │       ├── others
│   │               │       │   ├── apex
│   │               │       │   │   ├── area.html
│   │               │       │   │   ├── bar.html
│   │               │       │   │   ├── column.html
│   │               │       │   │   ├── line.html
│   │               │       │   │   ├── mix.html
│   │               │       │   │   └── radar.html
│   │               │       │   ├── datapermission
│   │               │       │   │   └── test.html
│   │               │       │   ├── eximport
│   │               │       │   │   ├── eximport.html
│   │               │       │   │   └── eximportResult.html
│   │               │       │   ├── febs
│   │               │       │   │   ├── form.html
│   │               │       │   │   ├── formGroup.html
│   │               │       │   │   ├── icon.html
│   │               │       │   │   ├── others.html
│   │               │       │   │   └── tools.html
│   │               │       │   └── map
│   │               │       │       └── gaodeMap.html
│   │               │       └── system
│   │               │           ├── dept
│   │               │           │   └── dept.html
│   │               │           ├── menu
│   │               │           │   └── menu.html
│   │               │           ├── role
│   │               │           │   └── role.html
│   │               │           └── user
│   │               │               ├── avatar.html
│   │               │               ├── passwordUpdate.html
│   │               │               ├── profileUpdate.html
│   │               │               ├── user.html
│   │               │               ├── userAdd.html
│   │               │               ├── userDetail.html
│   │               │               ├── userProfile.html
│   │               │               └── userUpdate.html
│   │               └── index.html
│   └── target
│       ├── classes
│       │   ├── META-INF
│       │   │   └── spring-configuration-metadata.json
│       │   ├── ValidationMessages.properties
│       │   ├── application-dev.yml
│       │   ├── application-prod.yml
│       │   ├── application-test.yml
│       │   ├── application.yml
│       │   ├── banner.txt
│       │   ├── cc
│       │   │   └── mrbird
│       │   │       └── febs
│       │   │           ├── FebsShiroApplication.class
│       │   │           ├── common
│       │   │           │   ├── annotation
│       │   │           │   │   ├── ControllerEndpoint.class
│       │   │           │   │   ├── DataPermission.class
│       │   │           │   │   ├── FebsEndPoint.class
│       │   │           │   │   ├── Helper.class
│       │   │           │   │   ├── IsCron.class
│       │   │           │   │   ├── IsMobile.class
│       │   │           │   │   └── Limit.class
│       │   │           │   ├── aspect
│       │   │           │   │   ├── BaseAspectSupport.class
│       │   │           │   │   ├── ControllerEndpointAspect.class
│       │   │           │   │   ├── LimitAspect$1.class
│       │   │           │   │   └── LimitAspect.class
│       │   │           │   ├── authentication
│       │   │           │   │   ├── ShiroConfig.class
│       │   │           │   │   ├── ShiroHelper.class
│       │   │           │   │   ├── ShiroRealm.class
│       │   │           │   │   └── ShiroSessionListener.class
│       │   │           │   ├── configure
│       │   │           │   │   ├── FebsConfigure.class
│       │   │           │   │   ├── MybatisPlusConfigure.class
│       │   │           │   │   ├── P6spySqlFormatConfigure.class
│       │   │           │   │   └── RedisConfigure.class
│       │   │           │   ├── controller
│       │   │           │   │   └── BaseController.class
│       │   │           │   ├── converter
│       │   │           │   │   └── TimeConverter.class
│       │   │           │   ├── entity
│       │   │           │   │   ├── DeptTree.class
│       │   │           │   │   ├── FebsConstant.class
│       │   │           │   │   ├── FebsResponse.class
│       │   │           │   │   ├── ImageType.class
│       │   │           │   │   ├── LimitType.class
│       │   │           │   │   ├── MenuTree.class
│       │   │           │   │   ├── QueryRequest.class
│       │   │           │   │   └── Regexp.class
│       │   │           │   ├── exception
│       │   │           │   │   ├── FebsException.class
│       │   │           │   │   ├── FileDownloadException.class
│       │   │           │   │   ├── GeneratorException.class
│       │   │           │   │   ├── LimitAccessException.class
│       │   │           │   │   └── RedisConnectException.class
│       │   │           │   ├── handler
│       │   │           │   │   └── GlobalExceptionHandler.class
│       │   │           │   ├── interceptor
│       │   │           │   │   └── DataPermissionInterceptor.class
│       │   │           │   ├── properties
│       │   │           │   │   ├── FebsProperties.class
│       │   │           │   │   ├── ShiroProperties.class
│       │   │           │   │   ├── SwaggerProperties.class
│       │   │           │   │   └── ValidateCodeProperties.class
│       │   │           │   ├── runner
│       │   │           │   │   └── FebsStartedUpRunner.class
│       │   │           │   ├── service
│       │   │           │   │   ├── RedisService.class
│       │   │           │   │   └── ValidateCodeService.class
│       │   │           │   ├── utils
│       │   │           │   │   ├── AddressUtil.class
│       │   │           │   │   ├── DateUtil.class
│       │   │           │   │   ├── FebsUtil.class
│       │   │           │   │   ├── FileUtil.class
│       │   │           │   │   ├── HttpContextUtil.class
│       │   │           │   │   ├── HttpUtils$1.class
│       │   │           │   │   ├── HttpUtils.class
│       │   │           │   │   ├── IPUtils.class
│       │   │           │   │   ├── IpUtil.class
│       │   │           │   │   ├── JsoupUtil.class
│       │   │           │   │   ├── Md5Util.class
│       │   │           │   │   ├── SnowflakeId.class
│       │   │           │   │   ├── SortUtil.class
│       │   │           │   │   ├── SpringContextUtil.class
│       │   │           │   │   └── TreeUtil.class
│       │   │           │   ├── validator
│       │   │           │   │   ├── CronValidator.class
│       │   │           │   │   └── MobileValidator.class
│       │   │           │   ├── wxpay
│       │   │           │   │   ├── AppConstraint.class
│       │   │           │   │   ├── IWXPayDomain$DomainInfo.class
│       │   │           │   │   ├── IWXPayDomain.class
│       │   │           │   │   ├── MyWXPayConfig$1.class
│       │   │           │   │   ├── MyWXPayConfig.class
│       │   │           │   │   ├── ResourceRenderer.class
│       │   │           │   │   ├── WXPay.class
│       │   │           │   │   ├── WXPayConfig.class
│       │   │           │   │   ├── WXPayConstants$SignType.class
│       │   │           │   │   ├── WXPayConstants.class
│       │   │           │   │   ├── WXPayReport$1.class
│       │   │           │   │   ├── WXPayReport$2.class
│       │   │           │   │   ├── WXPayReport$ReportInfo.class
│       │   │           │   │   ├── WXPayReport.class
│       │   │           │   │   ├── WXPayRequest.class
│       │   │           │   │   ├── WXPayUtil.class
│       │   │           │   │   └── WXPayXmlUtil.class
│       │   │           │   └── xss
│       │   │           │       ├── XssFilter.class
│       │   │           │       └── XssHttpServletRequestWrapper.class
│       │   │           ├── generator
│       │   │           │   ├── controller
│       │   │           │   │   ├── GeneratorConfigController.class
│       │   │           │   │   ├── GeneratorController.class
│       │   │           │   │   └── ViewController.class
│       │   │           │   ├── entity
│       │   │           │   │   ├── Column.class
│       │   │           │   │   ├── FieldType.class
│       │   │           │   │   ├── GeneratorConfig.class
│       │   │           │   │   ├── GeneratorConstant.class
│       │   │           │   │   └── Table.class
│       │   │           │   ├── helper
│       │   │           │   │   └── GeneratorHelper.class
│       │   │           │   ├── mapper
│       │   │           │   │   ├── GeneratorConfigMapper.class
│       │   │           │   │   └── GeneratorMapper.class
│       │   │           │   └── service
│       │   │           │       ├── IGeneratorConfigService.class
│       │   │           │       ├── IGeneratorService.class
│       │   │           │       └── impl
│       │   │           │           ├── GeneratorConfigServiceImpl.class
│       │   │           │           └── GeneratorServiceImpl.class
│       │   │           ├── job
│       │   │           │   ├── configure
│       │   │           │   │   └── ScheduleConfigure.class
│       │   │           │   ├── controller
│       │   │           │   │   ├── JobController.class
│       │   │           │   │   ├── JobLogController.class
│       │   │           │   │   └── ViewController.class
│       │   │           │   ├── entity
│       │   │           │   │   ├── Job$ScheduleStatus.class
│       │   │           │   │   ├── Job.class
│       │   │           │   │   └── JobLog.class
│       │   │           │   ├── mapper
│       │   │           │   │   ├── JobLogMapper.class
│       │   │           │   │   └── JobMapper.class
│       │   │           │   ├── service
│       │   │           │   │   ├── IJobLogService.class
│       │   │           │   │   ├── IJobService.class
│       │   │           │   │   └── impl
│       │   │           │   │       ├── JobLogServiceImpl.class
│       │   │           │   │       └── JobServiceImpl.class
│       │   │           │   ├── task
│       │   │           │   │   └── TestTask.class
│       │   │           │   └── util
│       │   │           │       ├── ScheduleJob.class
│       │   │           │       ├── ScheduleRunnable.class
│       │   │           │       └── ScheduleUtils.class
│       │   │           ├── monitor
│       │   │           │   ├── configure
│       │   │           │   │   └── FebsMonitorConfigure.class
│       │   │           │   ├── controller
│       │   │           │   │   ├── FebsActuatorController.class
│       │   │           │   │   ├── LogController.class
│       │   │           │   │   ├── LoginLogController.class
│       │   │           │   │   ├── SessionController.class
│       │   │           │   │   └── ViewController.class
│       │   │           │   ├── endpoint
│       │   │           │   │   ├── FebsHttpTraceEndpoint$1.class
│       │   │           │   │   ├── FebsHttpTraceEndpoint$FebsHttpTraceDescriptor.class
│       │   │           │   │   ├── FebsHttpTraceEndpoint.class
│       │   │           │   │   ├── FebsMetricsEndpoint$AvailableTag.class
│       │   │           │   │   ├── FebsMetricsEndpoint$FebsMetricResponse.class
│       │   │           │   │   ├── FebsMetricsEndpoint$ListNamesResponse.class
│       │   │           │   │   ├── FebsMetricsEndpoint$Sample.class
│       │   │           │   │   └── FebsMetricsEndpoint.class
│       │   │           │   ├── entity
│       │   │           │   │   ├── ActiveUser.class
│       │   │           │   │   ├── FebsHttpTrace.class
│       │   │           │   │   ├── JvmInfo.class
│       │   │           │   │   ├── LoginLog.class
│       │   │           │   │   ├── ServerInfo.class
│       │   │           │   │   ├── SystemLog.class
│       │   │           │   │   └── TomcatInfo.class
│       │   │           │   ├── helper
│       │   │           │   │   └── FebsActuatorHelper.class
│       │   │           │   ├── mapper
│       │   │           │   │   ├── LogMapper.class
│       │   │           │   │   └── LoginLogMapper.class
│       │   │           │   └── service
│       │   │           │       ├── ILogService.class
│       │   │           │       ├── ILoginLogService.class
│       │   │           │       ├── ISessionService.class
│       │   │           │       └── impl
│       │   │           │           ├── LogServiceImpl.class
│       │   │           │           ├── LoginLogServiceImpl.class
│       │   │           │           └── SessionServiceImpl.class
│       │   │           ├── others
│       │   │           │   ├── controller
│       │   │           │   │   ├── DataPermissionTestController.class
│       │   │           │   │   ├── EximportController$1.class
│       │   │           │   │   ├── EximportController.class
│       │   │           │   │   └── ViewController.class
│       │   │           │   ├── entity
│       │   │           │   │   ├── DataPermissionTest.class
│       │   │           │   │   └── Eximport.class
│       │   │           │   ├── mapper
│       │   │           │   │   ├── DataPermissionTestMapper.class
│       │   │           │   │   └── EximportMapper.class
│       │   │           │   └── service
│       │   │           │       ├── IDataPermissionTestService.class
│       │   │           │       ├── IEximportService.class
│       │   │           │       └── impl
│       │   │           │           ├── DataPermissionTestServiceImpl.class
│       │   │           │           └── EximportServiceImpl.class
│       │   │           ├── project
│       │   │           │   ├── controller
│       │   │           │   │   ├── APPWXLogin.class
│       │   │           │   │   ├── CensusController.class
│       │   │           │   │   ├── CustomerController.class
│       │   │           │   │   ├── GradeController.class
│       │   │           │   │   ├── OrderController.class
│       │   │           │   │   ├── ScarQuestionController.class
│       │   │           │   │   ├── ScarQuestionNewController.class
│       │   │           │   │   └── SuggestionController.class
│       │   │           │   ├── entity
│       │   │           │   │   ├── Census.class
│       │   │           │   │   ├── Customer.class
│       │   │           │   │   ├── Grade.class
│       │   │           │   │   ├── Order.class
│       │   │           │   │   ├── ScarQuestion.class
│       │   │           │   │   ├── ScarQuestionNew.class
│       │   │           │   │   └── Suggestion.class
│       │   │           │   ├── mapper
│       │   │           │   │   ├── CensusMapper.class
│       │   │           │   │   ├── CustomerMapper.class
│       │   │           │   │   ├── GradeMapper.class
│       │   │           │   │   ├── OrderMapper.class
│       │   │           │   │   ├── ScarQuestionMapper.class
│       │   │           │   │   ├── ScarQuestionNewMapper.class
│       │   │           │   │   └── SuggestionMapper.class
│       │   │           │   └── service
│       │   │           │       ├── ICensusService.class
│       │   │           │       ├── ICustomerService.class
│       │   │           │       ├── IGradeService.class
│       │   │           │       ├── IOrderService.class
│       │   │           │       ├── IScarQuestionNewService.class
│       │   │           │       ├── IScarQuestionService.class
│       │   │           │       ├── ISuggestionService.class
│       │   │           │       └── impl
│       │   │           │           ├── CensusServiceImpl.class
│       │   │           │           ├── CustomerServiceImpl.class
│       │   │           │           ├── GradeServiceImpl.class
│       │   │           │           ├── OrderServiceImpl.class
│       │   │           │           ├── ScarQuestionNewServiceImpl.class
│       │   │           │           ├── ScarQuestionServiceImpl.class
│       │   │           │           └── SuggestionServiceImpl.class
│       │   │           └── system
│       │   │               ├── controller
│       │   │               │   ├── DeptController.class
│       │   │               │   ├── LoginController.class
│       │   │               │   ├── MenuController.class
│       │   │               │   ├── RoleController.class
│       │   │               │   ├── UserController.class
│       │   │               │   └── ViewController.class
│       │   │               ├── entity
│       │   │               │   ├── Dept.class
│       │   │               │   ├── Menu.class
│       │   │               │   ├── Role.class
│       │   │               │   ├── RoleMenu.class
│       │   │               │   ├── Test.class
│       │   │               │   ├── User.class
│       │   │               │   ├── UserDataPermission.class
│       │   │               │   └── UserRole.class
│       │   │               ├── mapper
│       │   │               │   ├── DeptMapper.class
│       │   │               │   ├── MenuMapper.class
│       │   │               │   ├── RoleMapper.class
│       │   │               │   ├── RoleMenuMapper.class
│       │   │               │   ├── UserDataPermissionMapper.class
│       │   │               │   ├── UserMapper.class
│       │   │               │   └── UserRoleMapper.class
│       │   │               └── service
│       │   │                   ├── IDeptService.class
│       │   │                   ├── IMenuService.class
│       │   │                   ├── IRoleMenuService.class
│       │   │                   ├── IRoleService.class
│       │   │                   ├── IUserDataPermissionService.class
│       │   │                   ├── IUserRoleService.class
│       │   │                   ├── IUserService.class
│       │   │                   └── impl
│       │   │                       ├── DeptServiceImpl.class
│       │   │                       ├── MenuServiceImpl.class
│       │   │                       ├── RoleMenuServiceImpl.class
│       │   │                       ├── RoleServiceImpl.class
│       │   │                       ├── UserDataPermissionServiceImpl.class
│       │   │                       ├── UserRoleServiceImpl.class
│       │   │                       └── UserServiceImpl.class
│       │   ├── febs.properties
│       │   ├── generator
│       │   │   └── templates
│       │   │       ├── controller.ftl
│       │   │       ├── entity.ftl
│       │   │       ├── mapper.ftl
│       │   │       ├── mapperXml.ftl
│       │   │       ├── service.ftl
│       │   │       └── serviceImpl.ftl
│       │   ├── ip2region
│       │   │   └── ip2region.db
│       │   ├── logback-spring.xml
│       │   ├── mapper
│       │   │   ├── generator
│       │   │   │   └── GeneratorMapper.xml
│       │   │   ├── job
│       │   │   │   └── JobMapper.xml
│       │   │   ├── project
│       │   │   │   ├── CensusMapper.xml
│       │   │   │   ├── CustomerMapper.xml
│       │   │   │   ├── GradeMapper.xml
│       │   │   │   ├── OrderMapper.xml
│       │   │   │   ├── ScarQuestionMapper.xml
│       │   │   │   ├── ScarQuestionNewMapper.xml
│       │   │   │   └── SuggestionMapper.xml
│       │   │   └── system
│       │   │       ├── LoginLogMapper.xml
│       │   │       ├── MenuMapper.xml
│       │   │       ├── RoleMapper.xml
│       │   │       └── UserMapper.xml
│       │   ├── spy.properties
│       │   ├── static
│       │   │   ├── febs
│       │   │   │   ├── config.js
│       │   │   │   ├── css
│       │   │   │   │   ├── apexcharts.min.css
│       │   │   │   │   ├── eleTree.css
│       │   │   │   │   ├── febs.css
│       │   │   │   │   ├── formSelects-v4.css
│       │   │   │   │   └── login.css
│       │   │   │   ├── font
│       │   │   │   │   ├── iconfont.eot
│       │   │   │   │   ├── iconfont.svg
│       │   │   │   │   ├── iconfont.ttf
│       │   │   │   │   └── iconfont.woff
│       │   │   │   ├── images
│       │   │   │   │   ├── avatar
│       │   │   │   │   │   ├── 17e420c250804efe904a09a33796d5a10.jpg
│       │   │   │   │   │   ├── 17e420c250804efe904a09a33796d5a16.jpg
│       │   │   │   │   │   ├── 19034103295190235.jpg
│       │   │   │   │   │   ├── 1d22f3e41d284f50b2c8fc32e0788698.jpeg
│       │   │   │   │   │   ├── 20180414165754.jpg
│       │   │   │   │   │   ├── 20180414165815.jpg
│       │   │   │   │   │   ├── 20180414165821.jpg
│       │   │   │   │   │   ├── 20180414165827.jpg
│       │   │   │   │   │   ├── 20180414165834.jpg
│       │   │   │   │   │   ├── 20180414165840.jpg
│       │   │   │   │   │   ├── 20180414165846.jpg
│       │   │   │   │   │   ├── 20180414165855.jpg
│       │   │   │   │   │   ├── 20180414165909.jpg
│       │   │   │   │   │   ├── 20180414165914.jpg
│       │   │   │   │   │   ├── 20180414165920.jpg
│       │   │   │   │   │   ├── 20180414165927.jpg
│       │   │   │   │   │   ├── 20180414165936.jpg
│       │   │   │   │   │   ├── 20180414165942.jpg
│       │   │   │   │   │   ├── 20180414165947.jpg
│       │   │   │   │   │   ├── 20180414165955.jpg
│       │   │   │   │   │   ├── 20180414170003.jpg
│       │   │   │   │   │   ├── 2dd7a2d09fa94bf8b5c52e5318868b4d9.jpg
│       │   │   │   │   │   ├── 2dd7a2d09fa94bf8b5c52e5318868b4df.jpg
│       │   │   │   │   │   ├── 496b3ace787342f7954b7045b8b06804.jpeg
│       │   │   │   │   │   ├── 595ba7b05f2e485eb50565a50cb6cc3c.jpeg
│       │   │   │   │   │   ├── 5997fedcc7bd4cffbd350b40d1b5b9824.jpg
│       │   │   │   │   │   ├── 5997fedcc7bd4cffbd350b40d1b5b987.jpg
│       │   │   │   │   │   ├── 87d8194bc9834e9f8f0228e9e530beb1.jpeg
│       │   │   │   │   │   ├── 8f5b60ef00714a399ee544d331231820.jpeg
│       │   │   │   │   │   ├── 964e40b005724165b8cf772355796c8c.jpeg
│       │   │   │   │   │   ├── BiazfanxmamNRoxxVxka.png
│       │   │   │   │   │   ├── WhxKECPNujWoWEFNdnJE.png
│       │   │   │   │   │   ├── a3b10296862e40edb811418d64455d00.jpeg
│       │   │   │   │   │   ├── a43456282d684e0b9319cf332f8ac468.jpeg
│       │   │   │   │   │   ├── bba284ac05b041a8b8b0d1927868d5c9x.jpg
│       │   │   │   │   │   ├── c7c4ee7be3eb4e73a19887dc713505145.jpg
│       │   │   │   │   │   ├── cnrhVkzwxjPwAaCfPbdc.png
│       │   │   │   │   │   ├── default.jpg
│       │   │   │   │   │   ├── empty.jpg
│       │   │   │   │   │   ├── ff698bb2d25c4d218b3256b46c706ece.jpeg
│       │   │   │   │   │   ├── gaOngJwsRYRaVAuXXcmB.png
│       │   │   │   │   │   ├── jZUIxmJycoymBprLOUbT.png
│       │   │   │   │   │   └── ubnKSIfAJTxIgXOKlciN.png
│       │   │   │   │   ├── background.svg
│       │   │   │   │   ├── error
│       │   │   │   │   │   ├── 403.svg
│       │   │   │   │   │   ├── 404.svg
│       │   │   │   │   │   └── 500.svg
│       │   │   │   │   ├── favicon.ico
│       │   │   │   │   ├── logo.png
│       │   │   │   │   ├── side-bar-dark.svg
│       │   │   │   │   └── side-bar-light.svg
│       │   │   │   ├── index.js
│       │   │   │   └── lay
│       │   │   │       ├── data
│       │   │   │       │   └── dataSeries.js
│       │   │   │       ├── extends
│       │   │   │       │   ├── apexcharts.min.js
│       │   │   │       │   ├── eleTree.js
│       │   │   │       │   ├── formSelects-v4.min.js
│       │   │   │       │   └── treeSelect.js
│       │   │   │       └── modules
│       │   │   │           ├── api.js
│       │   │   │           ├── dropdown.js
│       │   │   │           ├── febs.js
│       │   │   │           ├── loadBar.js
│       │   │   │           ├── validate.js
│       │   │   │           └── view.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
│       │   │       ├── 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
│       │   │       │       ├── 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
│       │   └── templates
│       │       ├── error
│       │       │   ├── 403.html
│       │       │   ├── 404.html
│       │       │   └── 500.html
│       │       ├── febs
│       │       │   └── views
│       │       │       ├── customer
│       │       │       │   └── customer.html
│       │       │       ├── error
│       │       │       │   ├── 403.html
│       │       │       │   ├── 404.html
│       │       │       │   └── 500.html
│       │       │       ├── generator
│       │       │       │   ├── configure.html
│       │       │       │   └── generator.html
│       │       │       ├── index.html
│       │       │       ├── job
│       │       │       │   ├── job.html
│       │       │       │   ├── jobAdd.html
│       │       │       │   ├── jobLog.html
│       │       │       │   └── jobUpdate.html
│       │       │       ├── layout.html
│       │       │       ├── login.html
│       │       │       ├── monitor
│       │       │       │   ├── httpTrace.html
│       │       │       │   ├── jvmInfo.html
│       │       │       │   ├── log.html
│       │       │       │   ├── loginLog.html
│       │       │       │   ├── online.html
│       │       │       │   ├── serverInfo.html
│       │       │       │   ├── swagger.html
│       │       │       │   └── tomcatInfo.html
│       │       │       ├── order
│       │       │       │   └── order.html
│       │       │       ├── others
│       │       │       │   ├── apex
│       │       │       │   │   ├── area.html
│       │       │       │   │   ├── bar.html
│       │       │       │   │   ├── column.html
│       │       │       │   │   ├── line.html
│       │       │       │   │   ├── mix.html
│       │       │       │   │   └── radar.html
│       │       │       │   ├── datapermission
│       │       │       │   │   └── test.html
│       │       │       │   ├── eximport
│       │       │       │   │   ├── eximport.html
│       │       │       │   │   └── eximportResult.html
│       │       │       │   ├── febs
│       │       │       │   │   ├── form.html
│       │       │       │   │   ├── formGroup.html
│       │       │       │   │   ├── icon.html
│       │       │       │   │   ├── others.html
│       │       │       │   │   └── tools.html
│       │       │       │   └── map
│       │       │       │       └── gaodeMap.html
│       │       │       └── system
│       │       │           ├── dept
│       │       │           │   └── dept.html
│       │       │           ├── menu
│       │       │           │   └── menu.html
│       │       │           ├── role
│       │       │           │   └── role.html
│       │       │           └── user
│       │       │               ├── avatar.html
│       │       │               ├── passwordUpdate.html
│       │       │               ├── profileUpdate.html
│       │       │               ├── user.html
│       │       │               ├── userAdd.html
│       │       │               ├── userDetail.html
│       │       │               ├── userProfile.html
│       │       │               └── userUpdate.html
│       │       └── index.html
│       ├── generated-sources
│       │   └── annotations
│       ├── jiakao-1.0.jar
│       ├── jiakao-1.0.jar.original
│       ├── maven-archiver
│       │   └── pom.properties
│       └── maven-status
│           └── maven-compiler-plugin
│               └── compile
│                   └── default-compile
│                       ├── createdFiles.lst
│                       └── inputFiles.lst
└── 好例子网_jiakaoweb.zip

252 directories, 1012 files




网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警