├── ruoyi-admin └── src │ └── main │ ├── resources │ ├── static │ │ ├── file │ │ │ └── rml.txt │ │ ├── ruoyi.png │ │ ├── favicon.ico │ │ ├── img │ │ │ ├── pay.png │ │ │ ├── blue.png │ │ │ ├── locked.png │ │ │ ├── user.png │ │ │ ├── loading.gif │ │ │ ├── profile.jpg │ │ │ ├── progress.png │ │ │ ├── qr_code.png │ │ │ ├── loading-upload.gif │ │ │ └── login-background.jpg │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── Simple-Line-Icons.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ajax │ │ │ └── libs │ │ │ │ ├── iCheck │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ └── green-login.png │ │ │ │ ├── layer │ │ │ │ └── theme │ │ │ │ │ ├── default │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ │ │ └── moon │ │ │ │ │ └── default.png │ │ │ │ ├── bootstrap-fileinput │ │ │ │ ├── loading.gif │ │ │ │ └── loading-sm.gif │ │ │ │ ├── summernote │ │ │ │ └── font │ │ │ │ │ ├── summernote.eot │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ ├── summernote.woff │ │ │ │ │ └── summernote.woff2 │ │ │ │ ├── jquery-ztree │ │ │ │ └── 3.5 │ │ │ │ │ └── css │ │ │ │ │ ├── metro │ │ │ │ │ └── img │ │ │ │ │ │ ├── metro.gif │ │ │ │ │ │ ├── metro.png │ │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ │ ├── line_conn.png │ │ │ │ │ │ └── loading.gif │ │ │ │ │ ├── default │ │ │ │ │ └── img │ │ │ │ │ │ ├── diy │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ ├── 9.png │ │ │ │ │ │ ├── 1_close.png │ │ │ │ │ │ └── 1_open.png │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ │ ├── zTreeStandard.gif │ │ │ │ │ │ └── zTreeStandard.png │ │ │ │ │ └── simple │ │ │ │ │ └── img │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── left_menu.gif │ │ │ │ │ ├── left_menu.png │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ ├── zTreeStandard.gif │ │ │ │ │ └── zTreeStandard.png │ │ │ │ ├── bootstrap-table │ │ │ │ ├── extensions │ │ │ │ │ └── editable │ │ │ │ │ │ ├── clear.png │ │ │ │ │ │ └── loading.gif │ │ │ │ └── locale │ │ │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ │ │ └── bootstrap-table-zh-CN.js │ │ │ │ ├── layui │ │ │ │ └── css │ │ │ │ │ └── modules │ │ │ │ │ └── laydate │ │ │ │ │ └── default │ │ │ │ │ └── font │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ ├── validate │ │ │ │ └── messages_zh.min.js │ │ │ │ └── jsonview │ │ │ │ └── jquery.jsonview.css │ │ ├── css │ │ │ └── patterns │ │ │ │ ├── shattered.png │ │ │ │ ├── header-profile.png │ │ │ │ ├── header-profile-skin-blue.png │ │ │ │ └── header-profile-skin-yellow.png │ │ └── i18n │ │ │ └── messages.properties │ ├── templates │ │ └── error │ │ │ ├── business.html │ │ │ ├── 500.html │ │ │ ├── 404.html │ │ │ └── unauth.html │ └── mybatis │ │ └── mybatis-config.xml │ └── java │ └── com │ └── ruoyi │ ├── RuoYiServletInitializer.java │ ├── web │ └── controller │ │ ├── tool │ │ ├── SwaggerController.java │ │ └── BuildController.java │ │ ├── monitor │ │ ├── DruidController.java │ │ └── ServerController.java │ │ └── demo │ │ └── controller │ │ ├── DemoIconController.java │ │ └── DemoReportController.java │ └── RuoYiApplication.java ├── bin ├── run.bat ├── clean.bat └── package.bat ├── doc ├── 若依环境使用手册.docx └── 02Activiti 6.x 整合 Spring Boot 2.x │ └── assets │ └── admin-port.png ├── screenshot ├── add.png ├── done.png ├── list.png ├── main.png ├── todo.png ├── user.png ├── define.png ├── detail.png ├── group.png ├── handle.png ├── history.png ├── modeler.png ├── my-todo.png ├── online.png ├── process.png ├── select.png ├── useradd.png ├── doneitem.png ├── groupadd.png ├── modellist.png ├── outline_1.png ├── outline_2.png ├── process2.png ├── todoitem.png └── tutorial.png ├── ruoyi-process └── src │ ├── main │ ├── resources │ │ ├── static │ │ │ ├── modeler │ │ │ │ ├── editor-app │ │ │ │ │ ├── libs │ │ │ │ │ │ ├── es5-shim-15.3.4.5 │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ │ │ ├── h.js │ │ │ │ │ │ │ │ │ └── h-matchers.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ │ │ └── s-number.js │ │ │ │ │ │ │ ├── .bower.json │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── CONTRIBUTORS.md │ │ │ │ │ │ ├── bootstrap_3.1.1 │ │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ ├── angular-translate-storage-cookie │ │ │ │ │ │ │ ├── angular-translate-storage-cookie.min.js │ │ │ │ │ │ │ ├── angular-translate-storage-cookie.js │ │ │ │ │ │ │ └── .bower.json │ │ │ │ │ │ ├── angular-translate-loader-static-files │ │ │ │ │ │ │ ├── angular-translate-loader-static-files.min.js │ │ │ │ │ │ │ ├── .bower.json │ │ │ │ │ │ │ └── angular-translate-loader-static-files.js │ │ │ │ │ │ ├── angular-cookies_1.2.13 │ │ │ │ │ │ │ └── angular-cookies.min.js │ │ │ │ │ │ └── json3_3.2.6 │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── images │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ ├── delete.png │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── logo-2x.png │ │ │ │ │ │ ├── wrench.png │ │ │ │ │ │ ├── bpmn-error.png │ │ │ │ │ │ ├── bpmn-warning.png │ │ │ │ │ │ ├── datadefinition.png │ │ │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ │ │ ├── se-handle-dark.gif │ │ │ │ │ │ └── shapemenu_highlight.png │ │ │ │ │ ├── popups │ │ │ │ │ │ ├── icon-template.html │ │ │ │ │ │ ├── select-shape.html │ │ │ │ │ │ └── unsaved-changes.html │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── activiti-admin-webfont.eot │ │ │ │ │ │ ├── activiti-admin-webfont.ttf │ │ │ │ │ │ ├── activiti-admin-webfont.woff │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ ├── stencilsets │ │ │ │ │ │ └── bpmn2.0 │ │ │ │ │ │ │ └── icons │ │ │ │ │ │ │ ├── diagram.png │ │ │ │ │ │ │ ├── activity │ │ │ │ │ │ │ ├── task.png │ │ │ │ │ │ │ ├── subprocess.png │ │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ │ ├── type.mule.png │ │ │ │ │ │ │ │ ├── type.send.png │ │ │ │ │ │ │ │ ├── type.user.png │ │ │ │ │ │ │ │ ├── type.camel.png │ │ │ │ │ │ │ │ ├── type.manual.png │ │ │ │ │ │ │ │ ├── type.script.png │ │ │ │ │ │ │ │ ├── type.shell.png │ │ │ │ │ │ │ │ ├── type.receive.png │ │ │ │ │ │ │ │ ├── type.service.png │ │ │ │ │ │ │ │ └── type.business.rule.png │ │ │ │ │ │ │ ├── event.subprocess.png │ │ │ │ │ │ │ ├── expanded.subprocess.png │ │ │ │ │ │ │ └── event.subprocess.collapsed.png │ │ │ │ │ │ │ ├── endevent │ │ │ │ │ │ │ ├── none.png │ │ │ │ │ │ │ ├── cancel.png │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ └── terminate.png │ │ │ │ │ │ │ ├── swimlane │ │ │ │ │ │ │ ├── lane.png │ │ │ │ │ │ │ └── pool.png │ │ │ │ │ │ │ ├── throwing │ │ │ │ │ │ │ ├── none.png │ │ │ │ │ │ │ └── signal.png │ │ │ │ │ │ │ ├── catching │ │ │ │ │ │ │ ├── cancel.png │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ ├── signal.png │ │ │ │ │ │ │ ├── timer.png │ │ │ │ │ │ │ ├── message.png │ │ │ │ │ │ │ └── compensation.png │ │ │ │ │ │ │ ├── startevent │ │ │ │ │ │ │ ├── none.png │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ ├── message.png │ │ │ │ │ │ │ ├── signal.png │ │ │ │ │ │ │ └── timer.png │ │ │ │ │ │ │ ├── gateway │ │ │ │ │ │ │ ├── eventbased.png │ │ │ │ │ │ │ ├── inclusive.png │ │ │ │ │ │ │ ├── parallel.png │ │ │ │ │ │ │ └── exclusive.databased.png │ │ │ │ │ │ │ ├── connector │ │ │ │ │ │ │ ├── messageflow.png │ │ │ │ │ │ │ ├── sequenceflow.png │ │ │ │ │ │ │ ├── association.undirected.png │ │ │ │ │ │ │ └── association.unidirectional.png │ │ │ │ │ │ │ ├── dataobject │ │ │ │ │ │ │ └── data.store.png │ │ │ │ │ │ │ └── artifact │ │ │ │ │ │ │ └── text.annotation.png │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── properties │ │ │ │ │ │ │ ├── boolean-property-template.html │ │ │ │ │ │ │ ├── fields-write-template.html │ │ │ │ │ │ │ ├── assignment-write-template.html │ │ │ │ │ │ │ ├── in-parameters-write-template.html │ │ │ │ │ │ │ ├── text-property-write-template.html │ │ │ │ │ │ │ ├── event-listeners-write-template.html │ │ │ │ │ │ │ ├── form-properties-write-template.html │ │ │ │ │ │ │ ├── out-parameters-write-template.html │ │ │ │ │ │ │ ├── task-listeners-write-template.html │ │ │ │ │ │ │ ├── fields-display-template.html │ │ │ │ │ │ │ ├── message-definitions-write-template.html │ │ │ │ │ │ │ ├── sequenceflow-order-write-template.html │ │ │ │ │ │ │ ├── condition-expression-write-template.html │ │ │ │ │ │ │ ├── execution-listeners-write-template.html │ │ │ │ │ │ │ ├── signal-definitions-write-template.html │ │ │ │ │ │ │ ├── condition-expression-display-template.html │ │ │ │ │ │ │ ├── sequenceflow-order-display-template.html │ │ │ │ │ │ │ ├── subprocess-reference-write-template.html │ │ │ │ │ │ │ ├── subprocess-reference-display-template.html │ │ │ │ │ │ │ ├── in-parameters-display-template.html │ │ │ │ │ │ │ ├── message-definitions-display-template.html │ │ │ │ │ │ │ ├── out-parameters-display-template.html │ │ │ │ │ │ │ ├── signal-definitions-display-template.html │ │ │ │ │ │ │ ├── task-listeners-display-template.html │ │ │ │ │ │ │ ├── event-listeners-display-template.html │ │ │ │ │ │ │ ├── form-properties-display-template.html │ │ │ │ │ │ │ ├── execution-listeners-display-template.html │ │ │ │ │ │ │ ├── default-value-display-template.html │ │ │ │ │ │ │ ├── multiinstance-property-write-template.html │ │ │ │ │ │ │ ├── string-property-write-mode-template.html │ │ │ │ │ │ │ ├── signal-property-write-template.html │ │ │ │ │ │ │ ├── message-property-write-template.html │ │ │ │ │ │ │ ├── text-popup.html │ │ │ │ │ │ │ ├── assignment-display-template.html │ │ │ │ │ │ │ ├── feedback-popup.html │ │ │ │ │ │ │ └── condition-expression-popup.html │ │ │ │ │ │ ├── toolbar-custom-actions.js │ │ │ │ │ │ ├── properties-custom-controllers.js │ │ │ │ │ │ ├── properties-multiinstance-controller.js │ │ │ │ │ │ └── url-config.js │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── root-stencil-item-template.html │ │ │ │ │ │ └── stencil-item-template.html │ │ │ │ │ ├── app-cfg.js │ │ │ │ │ ├── editor-config.js │ │ │ │ │ └── header-controller.js │ │ │ │ └── diagram-viewer │ │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── checker-bg.png │ │ │ │ │ ├── breadcrumbs.png │ │ │ │ │ └── deployer │ │ │ │ │ │ ├── send.png │ │ │ │ │ │ ├── user.png │ │ │ │ │ │ ├── manual.png │ │ │ │ │ │ ├── script.png │ │ │ │ │ │ ├── timer.png │ │ │ │ │ │ ├── receive.png │ │ │ │ │ │ ├── service.png │ │ │ │ │ │ ├── error_catch.png │ │ │ │ │ │ ├── error_throw.png │ │ │ │ │ │ ├── business_rule.png │ │ │ │ │ │ ├── message_catch.png │ │ │ │ │ │ ├── message_throw.png │ │ │ │ │ │ ├── signal_catch.png │ │ │ │ │ │ ├── signal_throw.png │ │ │ │ │ │ └── blue │ │ │ │ │ │ └── message_catch.png │ │ │ │ │ └── js │ │ │ │ │ ├── Polyline.js │ │ │ │ │ └── jstools.js │ │ │ └── bpmn │ │ │ │ ├── vendor │ │ │ │ └── bpmn-font │ │ │ │ │ └── font │ │ │ │ │ ├── bpmn.eot │ │ │ │ │ ├── bpmn.ttf │ │ │ │ │ ├── bpmn.woff │ │ │ │ │ └── bpmn.woff2 │ │ │ │ └── descriptors │ │ │ │ └── magic.json │ │ └── templates │ │ │ └── process │ │ │ └── general │ │ │ └── processImg.html │ └── java │ │ └── com │ │ └── ruoyi │ │ └── process │ │ ├── general │ │ ├── service │ │ │ └── IProcessService.java │ │ ├── mapper │ │ │ └── ProcessMapper.java │ │ └── domain │ │ │ └── HistoricActivity.java │ │ ├── leavecountersign │ │ ├── form │ │ │ └── UsersFormType.java │ │ └── listener │ │ │ └── LeaveCounterSignCompleteListener.java │ │ ├── leave │ │ └── mapper │ │ │ └── BizLeaveMapper.java │ │ ├── user │ │ └── mapper │ │ │ └── ActIdUserMapper.java │ │ └── group │ │ └── mapper │ │ └── ActIdGroupMapper.java │ └── test │ └── java │ └── com │ └── xianlutech │ └── processbuilder │ └── ProcessTest.java ├── ruoyi-generator ├── src │ └── main │ │ ├── resources │ │ └── generator.yml │ │ └── java │ │ └── com │ │ └── ruoyi │ │ └── generator │ │ ├── util │ │ └── VelocityInitializer.java │ │ ├── service │ │ └── IGenTableColumnService.java │ │ └── mapper │ │ └── GenTableColumnMapper.java └── pom.xml ├── ruoyi-common └── src │ └── main │ └── java │ └── com │ └── ruoyi │ └── common │ ├── enums │ ├── BusinessStatus.java │ ├── DataSourceType.java │ ├── OperatorType.java │ ├── OnlineStatus.java │ ├── UserStatus.java │ └── BusinessType.java │ ├── exception │ ├── DemoModeException.java │ ├── user │ │ ├── CaptchaException.java │ │ ├── RoleBlockedException.java │ │ ├── UserBlockedException.java │ │ ├── UserDeleteException.java │ │ ├── UserNotExistsException.java │ │ ├── UserPasswordNotMatchException.java │ │ ├── UserException.java │ │ ├── UserPasswordRetryLimitCountException.java │ │ └── UserPasswordRetryLimitExceedException.java │ ├── file │ │ ├── FileException.java │ │ ├── FileSizeLimitExceededException.java │ │ └── FileNameLengthLimitExceededException.java │ ├── BusinessException.java │ └── job │ │ └── TaskException.java │ ├── annotation │ ├── Excels.java │ ├── RepeatSubmit.java │ ├── DataScope.java │ ├── DataSource.java │ └── Log.java │ ├── constant │ ├── PermissionConstants.java │ └── ScheduleConstants.java │ ├── utils │ ├── MessageUtils.java │ ├── sql │ │ └── SqlUtil.java │ └── ExceptionUtil.java │ ├── core │ ├── page │ │ └── TableSupport.java │ └── domain │ │ └── TreeEntity.java │ ├── config │ ├── ServerConfig.java │ └── datasource │ │ └── DynamicDataSourceContextHolder.java │ └── xss │ └── XssHttpServletRequestWrapper.java ├── sql └── README.md ├── ruoyi-quartz ├── src │ └── main │ │ └── java │ │ └── com │ │ └── ruoyi │ │ └── quartz │ │ ├── util │ │ ├── QuartzJobExecution.java │ │ └── QuartzDisallowConcurrentExecution.java │ │ ├── task │ │ └── RyTask.java │ │ ├── service │ │ └── ISysJobLogService.java │ │ └── mapper │ │ ├── SysJobMapper.java │ │ └── SysJobLogMapper.java └── pom.xml ├── ruoyi-framework └── src │ └── main │ └── java │ └── com │ └── ruoyi │ └── framework │ ├── config │ ├── ApplicationConfig.java │ └── I18nConfig.java │ ├── web │ ├── service │ │ ├── ConfigService.java │ │ └── DictService.java │ └── domain │ │ └── server │ │ └── Mem.java │ ├── datasource │ └── DynamicDataSource.java │ ├── manager │ └── AsyncManager.java │ └── shiro │ └── web │ └── filter │ └── sync │ └── SyncOnlineSessionFilter.java ├── .gitignore ├── ruoyi-system ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── ruoyi │ │ │ └── system │ │ │ ├── service │ │ │ ├── ISysLogininforService.java │ │ │ ├── ISysOperLogService.java │ │ │ └── ISysNoticeService.java │ │ │ ├── mapper │ │ │ ├── SysLogininforMapper.java │ │ │ ├── SysRoleDeptMapper.java │ │ │ ├── SysUserPostMapper.java │ │ │ ├── SysRoleMenuMapper.java │ │ │ ├── SysOperLogMapper.java │ │ │ ├── SysNoticeMapper.java │ │ │ ├── SysUserOnlineMapper.java │ │ │ └── SysConfigMapper.java │ │ │ └── domain │ │ │ ├── SysRoleDept.java │ │ │ ├── SysRoleMenu.java │ │ │ ├── SysUserPost.java │ │ │ └── SysUserRole.java │ │ └── resources │ │ └── mapper │ │ └── system │ │ ├── SysUserPostMapper.xml │ │ ├── SysRoleDeptMapper.xml │ │ └── SysRoleMenuMapper.xml └── pom.xml └── LICENSE /ruoyi-admin/src/main/resources/static/file/rml.txt: -------------------------------------------------------------------------------- 1 | 下载临时目录 -------------------------------------------------------------------------------- /bin/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/bin/run.bat -------------------------------------------------------------------------------- /bin/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/bin/clean.bat -------------------------------------------------------------------------------- /bin/package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/bin/package.bat -------------------------------------------------------------------------------- /doc/若依环境使用手册.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/doc/若依环境使用手册.docx -------------------------------------------------------------------------------- /screenshot/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/add.png -------------------------------------------------------------------------------- /screenshot/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/done.png -------------------------------------------------------------------------------- /screenshot/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/list.png -------------------------------------------------------------------------------- /screenshot/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/main.png -------------------------------------------------------------------------------- /screenshot/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/todo.png -------------------------------------------------------------------------------- /screenshot/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/user.png -------------------------------------------------------------------------------- /screenshot/define.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/define.png -------------------------------------------------------------------------------- /screenshot/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/detail.png -------------------------------------------------------------------------------- /screenshot/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/group.png -------------------------------------------------------------------------------- /screenshot/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/handle.png -------------------------------------------------------------------------------- /screenshot/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/history.png -------------------------------------------------------------------------------- /screenshot/modeler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/modeler.png -------------------------------------------------------------------------------- /screenshot/my-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/my-todo.png -------------------------------------------------------------------------------- /screenshot/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/online.png -------------------------------------------------------------------------------- /screenshot/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/process.png -------------------------------------------------------------------------------- /screenshot/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/select.png -------------------------------------------------------------------------------- /screenshot/useradd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/useradd.png -------------------------------------------------------------------------------- /screenshot/doneitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/doneitem.png -------------------------------------------------------------------------------- /screenshot/groupadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/groupadd.png -------------------------------------------------------------------------------- /screenshot/modellist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/modellist.png -------------------------------------------------------------------------------- /screenshot/outline_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/outline_1.png -------------------------------------------------------------------------------- /screenshot/outline_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/outline_2.png -------------------------------------------------------------------------------- /screenshot/process2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/process2.png -------------------------------------------------------------------------------- /screenshot/todoitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/todoitem.png -------------------------------------------------------------------------------- /screenshot/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/screenshot/tutorial.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/ruoyi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/ruoyi.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/favicon.ico -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/pay.png -------------------------------------------------------------------------------- /ruoyi-process/src/main/resources/static/modeler/editor-app/libs/es5-shim-15.3.4.5/tests/helpers/h.js: -------------------------------------------------------------------------------- 1 | function implement() { 2 | throw 'Not implemented'; 3 | } -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/blue.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/locked.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/user.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/loading.gif -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/profile.jpg -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/progress.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/qr_code.png -------------------------------------------------------------------------------- /doc/02Activiti 6.x 整合 Spring Boot 2.x/assets/admin-port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/doc/02Activiti 6.x 整合 Spring Boot 2.x/assets/admin-port.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/loading-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/loading-upload.gif -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/img/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/img/login-background.jpg -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/ajax/libs/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/ajax/libs/iCheck/green.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/css/patterns/shattered.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/ajax/libs/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/ajax/libs/iCheck/green@2x.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/css/patterns/header-profile.png -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ruoyi-admin/src/main/resources/static/ajax/libs/iCheck/green-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-admin/src/main/resources/static/ajax/libs/iCheck/green-login.png -------------------------------------------------------------------------------- /ruoyi-process/src/main/resources/static/modeler/editor-app/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalvinHwang123/RuoYi-Process/HEAD/ruoyi-process/src/main/resources/static/modeler/editor-app/images/logo.png -------------------------------------------------------------------------------- /ruoyi-process/src/main/resources/static/modeler/editor-app/popups/icon-template.html: -------------------------------------------------------------------------------- 1 |