├── .gitattributes ├── .gitignore ├── LICENSE ├── README.MD ├── application.yml ├── bak ├── local │ └── application.yml ├── qq.png ├── readme │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.png │ ├── 4.png │ ├── login.jpg │ ├── qq.png │ └── wechat-mp-258.jpg ├── script │ ├── build-arm.sh │ ├── build-cgo.sh │ └── deploy-swarm-ry.yml ├── sql │ ├── data.db │ ├── ruoyi-go.sql │ └── ruoyi-go.zip └── wechat-mp-258.jpg ├── bootstrap.yml ├── go.mod ├── go.sum ├── go.work ├── go.work.sum ├── main.go ├── modules ├── common │ ├── common_vo │ │ ├── BasePageReq.go │ │ ├── LoginInfo.go │ │ ├── api_response.go │ │ ├── configVO.go │ │ ├── deptVO.go │ │ ├── dictDataVO.go │ │ ├── dictTypeVO.go │ │ ├── roleVO.go │ │ └── userInfoVO.go │ ├── functions │ │ ├── calculate_func.go │ │ ├── context_func.go │ │ ├── dict_func.go │ │ └── permission_func.go │ ├── global │ │ └── const.go │ ├── go.mod │ ├── go.sum │ ├── middleware │ │ └── auth │ │ │ ├── jwt_check.go │ │ │ ├── permit_check.go │ │ │ └── token_check.go │ ├── models │ │ ├── BaseModel.go │ │ ├── SysDept.go │ │ ├── SysDictData.go │ │ └── common.go │ ├── myconf │ │ └── MyConfig.go │ ├── session │ │ └── session_util.go │ └── util │ │ ├── api_resp.go │ │ ├── api_response.go │ │ ├── iptocity.go │ │ ├── iptocity_test.go │ │ ├── struct2map.go │ │ ├── table_response.go │ │ └── tpl_response.go ├── demo │ ├── demo_router.go │ ├── go.mod │ └── pages │ │ ├── form_controller.go │ │ ├── icon_controller.go │ │ ├── modal_controller.go │ │ ├── mybatis_controller.go │ │ ├── operate_controller.go │ │ ├── report_controller.go │ │ └── table_controller.go └── system │ ├── controller │ ├── CommonController.go │ ├── ConfigController.go │ ├── DeptController.go │ ├── DictDataController.go │ ├── DictTypeController.go │ ├── ErrorController.go │ ├── GenController.go │ ├── HomeController.go │ ├── IndexController.go │ ├── LoginController.go │ ├── LogininforController.go │ ├── MenuController.go │ ├── OnlineController.go │ ├── OperLogController.go │ ├── PostController.go │ ├── ProfileController.go │ ├── RoleApi.go │ ├── RoleController.go │ ├── ServerController.go │ ├── UserApi.go │ └── UserController.go │ ├── dao │ ├── ConfigDao.go │ ├── DictDataDao.go │ ├── DictTypeDao.go │ ├── GenTableColumnDao.go │ ├── GenTableDao.go │ ├── MenuDao.go │ ├── SysDeptDao.go │ ├── SysPostDao.go │ ├── SysRoleDao.go │ └── SysUserDao.go │ ├── go.mod │ ├── init.go │ ├── model │ ├── GenTable.go │ ├── GenTableColumn.go │ ├── SysConfig.go │ ├── SysDictType.go │ ├── SysLoginInfo.go │ ├── SysMenu.go │ ├── SysOperLog.go │ ├── SysPost.go │ ├── SysRole.go │ ├── SysRoleDept.go │ ├── SysRoleMenu.go │ ├── SysUser.go │ ├── SysUserOnline.go │ ├── SysUserPost.go │ └── SysUserRole.go │ ├── monitor_router.go │ ├── router.go │ ├── service │ ├── CodeGenService.go │ ├── ConfigService.go │ ├── DeptService.go │ ├── DictDataService.go │ ├── DictService.go │ ├── DictTypeService.go │ ├── LoginInforService.go │ ├── MenuService.go │ ├── OperLogService.go │ ├── PermissionService.go │ ├── RoleService.go │ ├── SessionService.go │ ├── SysPostService.go │ ├── TableColumnService.go │ ├── TableService.go │ └── UserService.go │ ├── system_router.go │ ├── tool_router.go │ └── vo │ ├── GenTableVO.go │ ├── logininfor.go │ ├── menuVO.go │ ├── oper_log.go │ ├── postVO.go │ └── user_online.go ├── pkg ├── lv_framework │ ├── README.MD │ ├── go.mod │ ├── go.sum │ ├── lv_cache │ │ ├── ICache.go │ │ ├── lv_ram │ │ │ ├── map.go │ │ │ └── map_test.go │ │ └── lv_redis │ │ │ └── redis.go │ ├── lv_conf │ │ └── default.go │ ├── lv_db │ │ ├── db_engine.go │ │ ├── lv_batis │ │ │ ├── lvbatis.go │ │ │ └── scanner.go │ │ ├── lv_dao │ │ │ ├── GenericCRUD.go │ │ │ └── query.go │ │ ├── lv_drivers │ │ │ └── mysql_drive.go │ │ └── namedsql │ │ │ └── named_query.go │ ├── lv_global │ │ ├── global.go │ │ └── iconfig.go │ ├── lv_log │ │ ├── logConf.go │ │ └── lv_log_impl │ │ │ └── logConf.go │ ├── utils │ │ ├── lv_conv │ │ │ ├── bytes.go │ │ │ ├── convert.go │ │ │ ├── gconv_unsafe.go │ │ │ ├── json_convert.go │ │ │ ├── transcode.go │ │ │ └── utils_array.go │ │ ├── lv_db │ │ │ └── ColumnUtil.go │ │ ├── lv_err │ │ │ ├── err_check.go │ │ │ └── stack_trace.go │ │ ├── lv_file │ │ │ ├── dir_file.go │ │ │ └── file.go │ │ ├── lv_gen │ │ │ └── random.go │ │ ├── lv_logic │ │ │ ├── IfTrue.go │ │ │ ├── empty.go │ │ │ └── utils_str.go │ │ ├── lv_net │ │ │ ├── JWTClaims.go │ │ │ ├── http_client_form.go │ │ │ ├── http_client_json.go │ │ │ ├── http_proxy.go │ │ │ ├── http_server_form.go │ │ │ ├── ip.go │ │ │ └── until.go │ │ ├── lv_office │ │ │ ├── XlsReadUtil.go │ │ │ └── excel.go │ │ ├── lv_os │ │ │ └── process.go │ │ ├── lv_reflect │ │ │ ├── LocaleUtil.go │ │ │ ├── data_copy.go │ │ │ ├── i18n.go │ │ │ ├── method_name.go │ │ │ └── struct2map.go │ │ ├── lv_secret │ │ │ ├── PKCS5.go │ │ │ ├── aes.go │ │ │ ├── base64.go │ │ │ ├── gmd5.go │ │ │ ├── md5.go │ │ │ ├── rsa.go │ │ │ ├── sha.go │ │ │ └── token.go │ │ ├── lv_sql │ │ │ ├── README.md │ │ │ ├── column_util.go │ │ │ ├── condition.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ └── search.go │ │ ├── lv_time │ │ │ ├── systime.go │ │ │ └── time_utils.go │ │ ├── lv_tpl │ │ │ └── template.go │ │ └── lv_try │ │ │ └── safe_run.go │ └── web │ │ ├── gintemplate │ │ └── template.go │ │ ├── lv_dto │ │ ├── PageReq.go │ │ ├── Resp.go │ │ ├── RespPage.go │ │ ├── common.go │ │ └── paging.go │ │ ├── middleware │ │ ├── custom_error.go │ │ ├── header.go │ │ ├── logger_request.go │ │ └── proxy_check.go │ │ ├── router │ │ └── router.go │ │ └── server │ │ └── server.go └── lv_grpc_driver_proto │ ├── Makefile │ ├── README.md │ ├── cloudinstance │ ├── cloudinstance.pb.go │ ├── cloudinstance.proto │ └── cloudinstance_grpc.pb.go │ ├── cloudinstancecallback │ ├── cloudinstancecallback.pb.go │ ├── cloudinstancecallback.proto │ └── cloudinstancecallback_grpc.pb.go │ ├── custommqttmessage │ ├── custommqttmessage.pb.go │ ├── custommqttmessage.proto │ └── custommqttmessage_grpc.pb.go │ ├── devicecallback │ ├── devicecallback.pb.go │ ├── devicecallback.proto │ └── devicecallback_grpc.pb.go │ ├── drivercommon │ ├── common.pb.go │ ├── common.proto │ └── common_grpc.pb.go │ ├── driverdevice │ ├── device.pb.go │ ├── device.proto │ └── device_grpc.pb.go │ ├── driverproduct │ ├── product.pb.go │ ├── product.proto │ └── product_grpc.pb.go │ ├── driverstorge │ ├── driverstorge.pb.go │ ├── driverstorge.proto │ └── driverstorge_grpc.pb.go │ ├── gateway │ ├── gateway.pb.go │ ├── gateway.proto │ └── gateway_grpc.pb.go │ ├── go.mod │ ├── go.sum │ ├── productcallback │ ├── productcallback.pb.go │ ├── productcallback.proto │ └── productcallback_grpc.pb.go │ └── thingmodel │ ├── thingmodel.pb.go │ ├── thingmodel.proto │ └── thingmodel_grpc.pb.go └── resources ├── mapper ├── iot_data │ ├── iot_alert_ai_di_mapper.sql │ ├── iot_cmd_ao_do_mapper.sql │ └── iot_data_his_mapper.sql ├── iot_dev │ ├── iot_device_mapper.sql │ ├── iot_prd_action_mapper.sql │ ├── iot_prd_event_mapper.sql │ ├── iot_prd_property_mapper.sql │ └── iot_product_mapper.sql ├── iot_driver │ ├── iot_data_his_mapper.sql │ └── iot_driver_instance_mapper.sql ├── iot_scene │ └── iot_scene_mapper.sql ├── mywork │ ├── app_gen_params_mapper.sql │ ├── dpc_table_mapper.sql │ ├── dpc_task_item_mapper.sql │ └── dpc_task_mapper.sql └── sys_post │ ├── sys_post_mapper.sql │ └── sys_post_mapper.tpl.bak ├── static ├── favicon.ico ├── resource │ ├── ajax │ │ └── libs │ │ │ ├── beautifyhtml │ │ │ └── beautifyhtml.js │ │ │ ├── blockUI │ │ │ └── jquery.blockUI.js │ │ │ ├── bootstrap-fileinput │ │ │ ├── fileinput.css │ │ │ ├── fileinput.js │ │ │ ├── fileinput.min.css │ │ │ ├── fileinput.min.js │ │ │ ├── loading-sm.gif │ │ │ └── loading.gif │ │ │ ├── bootstrap-select │ │ │ ├── bootstrap-select.css │ │ │ ├── bootstrap-select.js │ │ │ ├── bootstrap-select.min.css │ │ │ └── bootstrap-select.min.js │ │ │ ├── bootstrap-table │ │ │ ├── bootstrap-table.min.css │ │ │ ├── bootstrap-table.min.js │ │ │ ├── extensions │ │ │ │ ├── auto-refresh │ │ │ │ │ └── bootstrap-table-auto-refresh.js │ │ │ │ ├── columns │ │ │ │ │ └── bootstrap-table-fixed-columns.js │ │ │ │ ├── cookie │ │ │ │ │ └── bootstrap-table-cookie.js │ │ │ │ ├── custom-view │ │ │ │ │ └── bootstrap-table-custom-view.js │ │ │ │ ├── editable │ │ │ │ │ ├── bootstrap-editable.css │ │ │ │ │ ├── bootstrap-editable.min.js │ │ │ │ │ ├── bootstrap-table-editable.js │ │ │ │ │ ├── clear.png │ │ │ │ │ └── loading.gif │ │ │ │ ├── export │ │ │ │ │ ├── bootstrap-table-export.js │ │ │ │ │ └── tableExport.min.js │ │ │ │ ├── mobile │ │ │ │ │ └── bootstrap-table-mobile.js │ │ │ │ ├── print │ │ │ │ │ └── bootstrap-table-print.js │ │ │ │ ├── reorder-columns │ │ │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ │ │ └── jquery.dragtable.js │ │ │ │ ├── reorder-rows │ │ │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ │ │ └── jquery.tablednd.js │ │ │ │ ├── resizable │ │ │ │ │ ├── bootstrap-table-resizable.js │ │ │ │ │ └── jquery.resizableColumns.min.js │ │ │ │ └── tree │ │ │ │ │ ├── bootstrap-table-tree.js │ │ │ │ │ └── bootstrap-table-tree.min.js │ │ │ └── locale │ │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ │ └── bootstrap-table-zh-CN.min.js │ │ │ ├── cropper │ │ │ ├── cropper.css │ │ │ ├── cropper.js │ │ │ ├── cropper.min.css │ │ │ └── cropper.min.js │ │ │ ├── cxselect │ │ │ ├── jquery.cxselect.js │ │ │ └── jquery.cxselect.min.js │ │ │ ├── datapicker │ │ │ ├── bootstrap-datetimepicker.css │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.css │ │ │ └── bootstrap-datetimepicker.min.js │ │ │ ├── duallistbox │ │ │ ├── bootstrap-duallistbox.css │ │ │ ├── bootstrap-duallistbox.js │ │ │ ├── bootstrap-duallistbox.min.css │ │ │ └── bootstrap-duallistbox.min.js │ │ │ ├── flot │ │ │ ├── curvedLines.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.spline.js │ │ │ ├── jquery.flot.symbol.js │ │ │ └── jquery.flot.tooltip.min.js │ │ │ ├── fullscreen │ │ │ └── jquery.fullscreen.js │ │ │ ├── highlight │ │ │ ├── default.min.css │ │ │ └── highlight.min.js │ │ │ ├── iCheck │ │ │ ├── custom.css │ │ │ ├── green-login.png │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ └── icheck.min.js │ │ │ ├── jasny │ │ │ ├── jasny-bootstrap.css │ │ │ ├── jasny-bootstrap.js │ │ │ ├── jasny-bootstrap.min.css │ │ │ └── jasny-bootstrap.min.js │ │ │ ├── jquery-layout │ │ │ ├── jquery.layout-latest.css │ │ │ └── jquery.layout-latest.js │ │ │ ├── jquery-ztree │ │ │ └── 3.5 │ │ │ │ ├── css │ │ │ │ ├── default │ │ │ │ │ ├── img │ │ │ │ │ │ ├── diy │ │ │ │ │ │ │ ├── 1_close.png │ │ │ │ │ │ │ ├── 1_open.png │ │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ │ └── 9.png │ │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── zTreeStandard.gif │ │ │ │ │ │ └── zTreeStandard.png │ │ │ │ │ └── zTreeStyle.css │ │ │ │ ├── metro │ │ │ │ │ ├── img │ │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ │ ├── line_conn.png │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── metro.gif │ │ │ │ │ │ └── metro.png │ │ │ │ │ └── zTreeStyle.css │ │ │ │ └── simple │ │ │ │ │ ├── img │ │ │ │ │ ├── left_menu.gif │ │ │ │ │ ├── left_menu.png │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── zTreeStandard.gif │ │ │ │ │ └── zTreeStandard.png │ │ │ │ │ └── zTreeStyle.css │ │ │ │ ├── js │ │ │ │ ├── jquery.ztree.all-3.5.js │ │ │ │ ├── jquery.ztree.core-3.5.js │ │ │ │ ├── jquery.ztree.excheck-3.5.js │ │ │ │ ├── jquery.ztree.exedit-3.5.js │ │ │ │ └── jquery.ztree.exhide-3.5.js │ │ │ │ └── log v3.x.txt │ │ │ ├── jsonview │ │ │ ├── jquery.jsonview.css │ │ │ └── jquery.jsonview.js │ │ │ ├── layer │ │ │ ├── css │ │ │ │ └── layer.css │ │ │ ├── layer.min.js │ │ │ └── theme │ │ │ │ └── moon │ │ │ │ ├── default.png │ │ │ │ └── style.css │ │ │ ├── layui │ │ │ ├── css │ │ │ │ └── modules │ │ │ │ │ └── laydate.css │ │ │ ├── layui.min.js │ │ │ └── modules │ │ │ │ └── laydate.js │ │ │ ├── report │ │ │ ├── echarts │ │ │ │ └── echarts-all.min.js │ │ │ ├── peity │ │ │ │ └── jquery.peity.min.js │ │ │ └── sparkline │ │ │ │ └── jquery.sparkline.min.js │ │ │ ├── select2 │ │ │ ├── select2-bootstrap.min.css │ │ │ ├── select2.css │ │ │ ├── select2.js │ │ │ ├── select2.min.css │ │ │ └── select2.min.js │ │ │ ├── smartwizard │ │ │ ├── jquery.smartWizard.min.js │ │ │ └── smart_wizard_all.min.css │ │ │ ├── suggest │ │ │ └── bootstrap-suggest.min.js │ │ │ ├── summernote │ │ │ ├── font │ │ │ │ ├── summernote.eot │ │ │ │ ├── summernote.ttf │ │ │ │ ├── summernote.woff │ │ │ │ └── summernote.woff2 │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ │ │ ├── typeahead │ │ │ └── bootstrap-typeahead.min.js │ │ │ └── validate │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.extend.js │ │ │ ├── jquery.validate.min.js │ │ │ └── messages_zh.js │ ├── css │ │ ├── animate.min.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── jquery.contextMenu.min.css │ │ ├── login.css │ │ ├── login.min.css │ │ ├── skins.css │ │ ├── style.css │ │ ├── style.min.css │ │ └── zen-checkbox.css │ ├── file │ │ └── rml.txt │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── Simple-Line-Icons.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── zenicon.woff │ ├── html │ │ └── ie.html │ ├── i18n │ │ └── messages.properties │ ├── img │ │ ├── blue.png │ │ ├── head_bg.png │ │ ├── iot │ │ │ └── img_prd.png │ │ ├── loading-upload.gif │ │ ├── loading.gif │ │ ├── locked.png │ │ ├── login-background.jpg │ │ ├── profile.jpg │ │ ├── progress.png │ │ ├── qr_code.png │ │ └── user.png │ ├── js │ │ ├── bootstrap.min.js │ │ ├── cron.js │ │ ├── jquery-ui-1.10.4.min.js │ │ ├── jquery.contextMenu.min.js │ │ ├── jquery.i18n.properties.min.js │ │ ├── jquery.min.js │ │ ├── jquery.tmpl.js │ │ ├── plugins │ │ │ ├── metisMenu │ │ │ │ └── jquery.metisMenu.js │ │ │ └── slimscroll │ │ │ │ └── jquery.slimscroll.min.js │ │ ├── resize-tabs.js │ │ └── three.min.js │ ├── lostvip │ │ ├── ry-ext.css │ │ └── ry-ext.js │ └── ruoyi │ │ ├── css │ │ └── ry-ui.css │ │ ├── index.js │ │ ├── js │ │ ├── common.js │ │ └── ry-ui.js │ │ ├── login.js │ │ ├── login.js.ruoyi │ │ └── register.js └── upload │ ├── admin1624295586540255700.png │ └── admin1694703638771106900.png ├── template ├── .gitkeep ├── demo │ ├── dpc │ │ └── wizard.html │ ├── form │ │ ├── autocomplete.html │ │ ├── basic.html │ │ ├── button.html │ │ ├── cards.html │ │ ├── datetime.html │ │ ├── duallistbox.html │ │ ├── grid.html │ │ ├── jasny.html │ │ ├── select.html │ │ ├── sortable.html │ │ ├── summernote.html │ │ ├── tabs_panels.html │ │ ├── timeline.html │ │ ├── upload.html │ │ ├── validate.html │ │ └── wizard.html │ ├── icon │ │ ├── fontawesome.html │ │ └── glyphicons.html │ ├── modal │ │ ├── dialog.html │ │ ├── form.html │ │ ├── layer.html │ │ ├── table.html │ │ └── table │ │ │ ├── check.html │ │ │ ├── parent.html │ │ │ └── radio.html │ ├── operate │ │ ├── add.html │ │ ├── detail.html │ │ ├── edit.html │ │ ├── other.html │ │ └── table.html │ ├── report │ │ ├── echarts.html │ │ ├── metrics.html │ │ ├── peity.html │ │ └── sparkline.html │ └── table │ │ ├── button.html │ │ ├── child.html │ │ ├── curd.html │ │ ├── customView.html │ │ ├── detail.html │ │ ├── editable.html │ │ ├── event.html │ │ ├── export.html │ │ ├── fixedColumns.html │ │ ├── footer.html │ │ ├── groupHeader.html │ │ ├── image.html │ │ ├── multi.html │ │ ├── other.html │ │ ├── pageGo.html │ │ ├── params.html │ │ ├── recorder.html │ │ ├── remember.html │ │ ├── search.html │ │ └── subdata.html ├── error │ ├── 404.html │ ├── 500.html │ ├── error.html │ └── unauth.html ├── footer.html ├── header.html ├── home.html ├── index.html ├── index_left.html ├── lock.html ├── login.html ├── monitor │ ├── detail_oper_log.html │ ├── job │ │ ├── add.html │ │ ├── detail.html │ │ ├── detailLog.html │ │ ├── edit.html │ │ ├── jobLog.html │ │ └── list.html │ ├── list_login_info.html │ ├── list_online.html │ ├── list_oper_log.html │ └── server.html ├── mywork │ ├── his_data_wizard.html │ ├── item │ │ ├── add.html │ │ ├── edit.html │ │ └── list.html │ ├── params │ │ ├── add.html │ │ ├── edit.html │ │ └── list.html │ ├── table │ │ ├── add.html │ │ ├── edit.html │ │ └── list.html │ └── task │ │ ├── add.html │ │ ├── edit.html │ │ └── list.html ├── register.html ├── skin.html ├── skin2.html ├── system │ ├── config │ │ ├── add.html │ │ ├── edit.html │ │ └── list.html │ ├── dept │ │ ├── add.html │ │ ├── edit.html │ │ ├── list.html │ │ └── tree.html │ ├── dict │ │ ├── data │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ └── list.html │ │ └── type │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ ├── list.html │ │ │ └── tree.html │ ├── menu │ │ ├── add.html │ │ ├── edit.html │ │ ├── icon.html │ │ ├── list.html │ │ └── tree.html │ ├── post │ │ ├── add.html │ │ ├── edit.html │ │ └── list.html │ ├── role │ │ ├── add.html │ │ ├── authUser.html │ │ ├── dataScope.html │ │ ├── edit.html │ │ ├── list.html │ │ └── selectUser.html │ └── user │ │ ├── add.html │ │ ├── edit.html │ │ ├── list.html │ │ ├── profile │ │ ├── avatar.html │ │ ├── profile.html │ │ └── resetPwd.html │ │ └── resetPwd.html └── tool │ ├── build.html │ ├── gen_edit_table.html │ ├── gen_import_table.html │ └── gen_list_tables.html └── tpl_gen ├── modules └── {{.ModuleName}} │ └── internal │ └── {{.PackageName}} │ ├── controller │ ├── {{.ClassName}}Api.go.tpl │ └── {{.ClassName}}Controller.go.tpl │ ├── dao │ └── {{.ClassName}}Dao.go.tpl │ ├── model │ └── {{.ClassName}}.go.tpl │ ├── service │ └── {{.ClassName}}Service.go.tpl │ ├── vo │ └── {{.ClassName}}VO.go.tpl │ └── {{.TbName}}_router.go.tpl └── resources ├── mapper └── {{.PackageName}} │ └── {{.TbName}}_mapper.sql.tpl └── template └── {{.PackageName}} ├── add_{{.BusinessName}}.html.tpl ├── edit_{{.BusinessName}}.html.tpl └── list_{{.BusinessName}}.html.tpl /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/README.MD -------------------------------------------------------------------------------- /application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/application.yml -------------------------------------------------------------------------------- /bak/local/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/local/application.yml -------------------------------------------------------------------------------- /bak/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/qq.png -------------------------------------------------------------------------------- /bak/readme/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/readme/1.jpg -------------------------------------------------------------------------------- /bak/readme/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/readme/2.jpg -------------------------------------------------------------------------------- /bak/readme/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/readme/3.png -------------------------------------------------------------------------------- /bak/readme/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/readme/4.png -------------------------------------------------------------------------------- /bak/readme/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/readme/login.jpg -------------------------------------------------------------------------------- /bak/readme/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/readme/qq.png -------------------------------------------------------------------------------- /bak/readme/wechat-mp-258.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/readme/wechat-mp-258.jpg -------------------------------------------------------------------------------- /bak/script/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/script/build-arm.sh -------------------------------------------------------------------------------- /bak/script/build-cgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/script/build-cgo.sh -------------------------------------------------------------------------------- /bak/script/deploy-swarm-ry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/script/deploy-swarm-ry.yml -------------------------------------------------------------------------------- /bak/sql/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/sql/data.db -------------------------------------------------------------------------------- /bak/sql/ruoyi-go.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/sql/ruoyi-go.sql -------------------------------------------------------------------------------- /bak/sql/ruoyi-go.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/sql/ruoyi-go.zip -------------------------------------------------------------------------------- /bak/wechat-mp-258.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bak/wechat-mp-258.jpg -------------------------------------------------------------------------------- /bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/bootstrap.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/go.work -------------------------------------------------------------------------------- /go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/go.work.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/main.go -------------------------------------------------------------------------------- /modules/common/common_vo/BasePageReq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/BasePageReq.go -------------------------------------------------------------------------------- /modules/common/common_vo/LoginInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/LoginInfo.go -------------------------------------------------------------------------------- /modules/common/common_vo/api_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/api_response.go -------------------------------------------------------------------------------- /modules/common/common_vo/configVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/configVO.go -------------------------------------------------------------------------------- /modules/common/common_vo/deptVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/deptVO.go -------------------------------------------------------------------------------- /modules/common/common_vo/dictDataVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/dictDataVO.go -------------------------------------------------------------------------------- /modules/common/common_vo/dictTypeVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/dictTypeVO.go -------------------------------------------------------------------------------- /modules/common/common_vo/roleVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/roleVO.go -------------------------------------------------------------------------------- /modules/common/common_vo/userInfoVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/common_vo/userInfoVO.go -------------------------------------------------------------------------------- /modules/common/functions/calculate_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/functions/calculate_func.go -------------------------------------------------------------------------------- /modules/common/functions/context_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/functions/context_func.go -------------------------------------------------------------------------------- /modules/common/functions/dict_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/functions/dict_func.go -------------------------------------------------------------------------------- /modules/common/functions/permission_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/functions/permission_func.go -------------------------------------------------------------------------------- /modules/common/global/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/global/const.go -------------------------------------------------------------------------------- /modules/common/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/go.mod -------------------------------------------------------------------------------- /modules/common/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/go.sum -------------------------------------------------------------------------------- /modules/common/middleware/auth/jwt_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/middleware/auth/jwt_check.go -------------------------------------------------------------------------------- /modules/common/middleware/auth/permit_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/middleware/auth/permit_check.go -------------------------------------------------------------------------------- /modules/common/middleware/auth/token_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/middleware/auth/token_check.go -------------------------------------------------------------------------------- /modules/common/models/BaseModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/models/BaseModel.go -------------------------------------------------------------------------------- /modules/common/models/SysDept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/models/SysDept.go -------------------------------------------------------------------------------- /modules/common/models/SysDictData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/models/SysDictData.go -------------------------------------------------------------------------------- /modules/common/models/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/models/common.go -------------------------------------------------------------------------------- /modules/common/myconf/MyConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/myconf/MyConfig.go -------------------------------------------------------------------------------- /modules/common/session/session_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/session/session_util.go -------------------------------------------------------------------------------- /modules/common/util/api_resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/util/api_resp.go -------------------------------------------------------------------------------- /modules/common/util/api_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/util/api_response.go -------------------------------------------------------------------------------- /modules/common/util/iptocity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/util/iptocity.go -------------------------------------------------------------------------------- /modules/common/util/iptocity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/util/iptocity_test.go -------------------------------------------------------------------------------- /modules/common/util/struct2map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/util/struct2map.go -------------------------------------------------------------------------------- /modules/common/util/table_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/util/table_response.go -------------------------------------------------------------------------------- /modules/common/util/tpl_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/common/util/tpl_response.go -------------------------------------------------------------------------------- /modules/demo/demo_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/demo_router.go -------------------------------------------------------------------------------- /modules/demo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/go.mod -------------------------------------------------------------------------------- /modules/demo/pages/form_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/pages/form_controller.go -------------------------------------------------------------------------------- /modules/demo/pages/icon_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/pages/icon_controller.go -------------------------------------------------------------------------------- /modules/demo/pages/modal_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/pages/modal_controller.go -------------------------------------------------------------------------------- /modules/demo/pages/mybatis_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/pages/mybatis_controller.go -------------------------------------------------------------------------------- /modules/demo/pages/operate_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/pages/operate_controller.go -------------------------------------------------------------------------------- /modules/demo/pages/report_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/pages/report_controller.go -------------------------------------------------------------------------------- /modules/demo/pages/table_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/demo/pages/table_controller.go -------------------------------------------------------------------------------- /modules/system/controller/CommonController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/CommonController.go -------------------------------------------------------------------------------- /modules/system/controller/ConfigController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/ConfigController.go -------------------------------------------------------------------------------- /modules/system/controller/DeptController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/DeptController.go -------------------------------------------------------------------------------- /modules/system/controller/DictDataController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/DictDataController.go -------------------------------------------------------------------------------- /modules/system/controller/DictTypeController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/DictTypeController.go -------------------------------------------------------------------------------- /modules/system/controller/ErrorController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/ErrorController.go -------------------------------------------------------------------------------- /modules/system/controller/GenController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/GenController.go -------------------------------------------------------------------------------- /modules/system/controller/HomeController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/HomeController.go -------------------------------------------------------------------------------- /modules/system/controller/IndexController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/IndexController.go -------------------------------------------------------------------------------- /modules/system/controller/LoginController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/LoginController.go -------------------------------------------------------------------------------- /modules/system/controller/LogininforController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/LogininforController.go -------------------------------------------------------------------------------- /modules/system/controller/MenuController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/MenuController.go -------------------------------------------------------------------------------- /modules/system/controller/OnlineController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/OnlineController.go -------------------------------------------------------------------------------- /modules/system/controller/OperLogController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/OperLogController.go -------------------------------------------------------------------------------- /modules/system/controller/PostController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/PostController.go -------------------------------------------------------------------------------- /modules/system/controller/ProfileController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/ProfileController.go -------------------------------------------------------------------------------- /modules/system/controller/RoleApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/RoleApi.go -------------------------------------------------------------------------------- /modules/system/controller/RoleController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/RoleController.go -------------------------------------------------------------------------------- /modules/system/controller/ServerController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/ServerController.go -------------------------------------------------------------------------------- /modules/system/controller/UserApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/UserApi.go -------------------------------------------------------------------------------- /modules/system/controller/UserController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/controller/UserController.go -------------------------------------------------------------------------------- /modules/system/dao/ConfigDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/ConfigDao.go -------------------------------------------------------------------------------- /modules/system/dao/DictDataDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/DictDataDao.go -------------------------------------------------------------------------------- /modules/system/dao/DictTypeDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/DictTypeDao.go -------------------------------------------------------------------------------- /modules/system/dao/GenTableColumnDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/GenTableColumnDao.go -------------------------------------------------------------------------------- /modules/system/dao/GenTableDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/GenTableDao.go -------------------------------------------------------------------------------- /modules/system/dao/MenuDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/MenuDao.go -------------------------------------------------------------------------------- /modules/system/dao/SysDeptDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/SysDeptDao.go -------------------------------------------------------------------------------- /modules/system/dao/SysPostDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/SysPostDao.go -------------------------------------------------------------------------------- /modules/system/dao/SysRoleDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/SysRoleDao.go -------------------------------------------------------------------------------- /modules/system/dao/SysUserDao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/dao/SysUserDao.go -------------------------------------------------------------------------------- /modules/system/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/go.mod -------------------------------------------------------------------------------- /modules/system/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/init.go -------------------------------------------------------------------------------- /modules/system/model/GenTable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/GenTable.go -------------------------------------------------------------------------------- /modules/system/model/GenTableColumn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/GenTableColumn.go -------------------------------------------------------------------------------- /modules/system/model/SysConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysConfig.go -------------------------------------------------------------------------------- /modules/system/model/SysDictType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysDictType.go -------------------------------------------------------------------------------- /modules/system/model/SysLoginInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysLoginInfo.go -------------------------------------------------------------------------------- /modules/system/model/SysMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysMenu.go -------------------------------------------------------------------------------- /modules/system/model/SysOperLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysOperLog.go -------------------------------------------------------------------------------- /modules/system/model/SysPost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysPost.go -------------------------------------------------------------------------------- /modules/system/model/SysRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysRole.go -------------------------------------------------------------------------------- /modules/system/model/SysRoleDept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysRoleDept.go -------------------------------------------------------------------------------- /modules/system/model/SysRoleMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysRoleMenu.go -------------------------------------------------------------------------------- /modules/system/model/SysUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysUser.go -------------------------------------------------------------------------------- /modules/system/model/SysUserOnline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysUserOnline.go -------------------------------------------------------------------------------- /modules/system/model/SysUserPost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysUserPost.go -------------------------------------------------------------------------------- /modules/system/model/SysUserRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/model/SysUserRole.go -------------------------------------------------------------------------------- /modules/system/monitor_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/monitor_router.go -------------------------------------------------------------------------------- /modules/system/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/router.go -------------------------------------------------------------------------------- /modules/system/service/CodeGenService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/CodeGenService.go -------------------------------------------------------------------------------- /modules/system/service/ConfigService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/ConfigService.go -------------------------------------------------------------------------------- /modules/system/service/DeptService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/DeptService.go -------------------------------------------------------------------------------- /modules/system/service/DictDataService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/DictDataService.go -------------------------------------------------------------------------------- /modules/system/service/DictService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/DictService.go -------------------------------------------------------------------------------- /modules/system/service/DictTypeService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/DictTypeService.go -------------------------------------------------------------------------------- /modules/system/service/LoginInforService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/LoginInforService.go -------------------------------------------------------------------------------- /modules/system/service/MenuService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/MenuService.go -------------------------------------------------------------------------------- /modules/system/service/OperLogService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/OperLogService.go -------------------------------------------------------------------------------- /modules/system/service/PermissionService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/PermissionService.go -------------------------------------------------------------------------------- /modules/system/service/RoleService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/RoleService.go -------------------------------------------------------------------------------- /modules/system/service/SessionService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/SessionService.go -------------------------------------------------------------------------------- /modules/system/service/SysPostService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/SysPostService.go -------------------------------------------------------------------------------- /modules/system/service/TableColumnService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/TableColumnService.go -------------------------------------------------------------------------------- /modules/system/service/TableService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/TableService.go -------------------------------------------------------------------------------- /modules/system/service/UserService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/service/UserService.go -------------------------------------------------------------------------------- /modules/system/system_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/system_router.go -------------------------------------------------------------------------------- /modules/system/tool_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/tool_router.go -------------------------------------------------------------------------------- /modules/system/vo/GenTableVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/vo/GenTableVO.go -------------------------------------------------------------------------------- /modules/system/vo/logininfor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/vo/logininfor.go -------------------------------------------------------------------------------- /modules/system/vo/menuVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/vo/menuVO.go -------------------------------------------------------------------------------- /modules/system/vo/oper_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/vo/oper_log.go -------------------------------------------------------------------------------- /modules/system/vo/postVO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/vo/postVO.go -------------------------------------------------------------------------------- /modules/system/vo/user_online.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/modules/system/vo/user_online.go -------------------------------------------------------------------------------- /pkg/lv_framework/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/README.MD -------------------------------------------------------------------------------- /pkg/lv_framework/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/go.mod -------------------------------------------------------------------------------- /pkg/lv_framework/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/go.sum -------------------------------------------------------------------------------- /pkg/lv_framework/lv_cache/ICache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_cache/ICache.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_cache/lv_ram/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_cache/lv_ram/map.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_cache/lv_ram/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_cache/lv_ram/map_test.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_cache/lv_redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_cache/lv_redis/redis.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_conf/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_conf/default.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_db/db_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_db/db_engine.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_db/lv_batis/lvbatis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_db/lv_batis/lvbatis.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_db/lv_batis/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_db/lv_batis/scanner.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_db/lv_dao/GenericCRUD.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_db/lv_dao/GenericCRUD.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_db/lv_dao/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_db/lv_dao/query.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_db/lv_drivers/mysql_drive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_db/lv_drivers/mysql_drive.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_db/namedsql/named_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_db/namedsql/named_query.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_global/global.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_global/iconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_global/iconfig.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_log/logConf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_log/logConf.go -------------------------------------------------------------------------------- /pkg/lv_framework/lv_log/lv_log_impl/logConf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/lv_log/lv_log_impl/logConf.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_conv/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_conv/bytes.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_conv/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_conv/convert.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_conv/gconv_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_conv/gconv_unsafe.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_conv/json_convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_conv/json_convert.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_conv/transcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_conv/transcode.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_conv/utils_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_conv/utils_array.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_db/ColumnUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_db/ColumnUtil.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_err/err_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_err/err_check.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_err/stack_trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_err/stack_trace.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_file/dir_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_file/dir_file.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_file/file.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_gen/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_gen/random.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_logic/IfTrue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_logic/IfTrue.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_logic/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_logic/empty.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_logic/utils_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_logic/utils_str.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_net/JWTClaims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_net/JWTClaims.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_net/http_client_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_net/http_client_form.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_net/http_client_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_net/http_client_json.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_net/http_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_net/http_proxy.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_net/http_server_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_net/http_server_form.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_net/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_net/ip.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_net/until.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_net/until.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_office/XlsReadUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_office/XlsReadUtil.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_office/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_office/excel.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_os/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_os/process.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_reflect/LocaleUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_reflect/LocaleUtil.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_reflect/data_copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_reflect/data_copy.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_reflect/i18n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_reflect/i18n.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_reflect/method_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_reflect/method_name.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_reflect/struct2map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_reflect/struct2map.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_secret/PKCS5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_secret/PKCS5.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_secret/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_secret/aes.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_secret/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_secret/base64.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_secret/gmd5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_secret/gmd5.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_secret/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_secret/md5.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_secret/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_secret/rsa.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_secret/sha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_secret/sha.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_secret/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_secret/token.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_sql/README.md -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_sql/column_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_sql/column_util.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_sql/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_sql/condition.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_sql/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_sql/query.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_sql/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_sql/query_test.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_sql/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_sql/search.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_time/systime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_time/systime.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_time/time_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_time/time_utils.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_tpl/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_tpl/template.go -------------------------------------------------------------------------------- /pkg/lv_framework/utils/lv_try/safe_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/utils/lv_try/safe_run.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/gintemplate/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/gintemplate/template.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/lv_dto/PageReq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/lv_dto/PageReq.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/lv_dto/Resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/lv_dto/Resp.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/lv_dto/RespPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/lv_dto/RespPage.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/lv_dto/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/lv_dto/common.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/lv_dto/paging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/lv_dto/paging.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/middleware/custom_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/middleware/custom_error.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/middleware/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/middleware/header.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/middleware/logger_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/middleware/logger_request.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/middleware/proxy_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/middleware/proxy_check.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/router/router.go -------------------------------------------------------------------------------- /pkg/lv_framework/web/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_framework/web/server/server.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/Makefile -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/README.md -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/cloudinstance/cloudinstance.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/cloudinstance/cloudinstance.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/cloudinstance/cloudinstance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/cloudinstance/cloudinstance.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/cloudinstance/cloudinstance_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/cloudinstance/cloudinstance_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/cloudinstancecallback/cloudinstancecallback.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/cloudinstancecallback/cloudinstancecallback.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/cloudinstancecallback/cloudinstancecallback.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/cloudinstancecallback/cloudinstancecallback.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/cloudinstancecallback/cloudinstancecallback_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/cloudinstancecallback/cloudinstancecallback_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/custommqttmessage/custommqttmessage.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/custommqttmessage/custommqttmessage.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/custommqttmessage/custommqttmessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/custommqttmessage/custommqttmessage.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/custommqttmessage/custommqttmessage_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/custommqttmessage/custommqttmessage_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/devicecallback/devicecallback.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/devicecallback/devicecallback.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/devicecallback/devicecallback.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/devicecallback/devicecallback.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/devicecallback/devicecallback_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/devicecallback/devicecallback_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/drivercommon/common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/drivercommon/common.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/drivercommon/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/drivercommon/common.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/drivercommon/common_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/drivercommon/common_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverdevice/device.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverdevice/device.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverdevice/device.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverdevice/device.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverdevice/device_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverdevice/device_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverproduct/product.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverproduct/product.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverproduct/product.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverproduct/product.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverproduct/product_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverproduct/product_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverstorge/driverstorge.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverstorge/driverstorge.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverstorge/driverstorge.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverstorge/driverstorge.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/driverstorge/driverstorge_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/driverstorge/driverstorge_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/gateway/gateway.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/gateway/gateway.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/gateway/gateway.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/gateway/gateway.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/gateway/gateway_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/gateway/gateway_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/go.mod -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/go.sum -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/productcallback/productcallback.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/productcallback/productcallback.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/productcallback/productcallback.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/productcallback/productcallback.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/productcallback/productcallback_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/productcallback/productcallback_grpc.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/thingmodel/thingmodel.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/thingmodel/thingmodel.pb.go -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/thingmodel/thingmodel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/thingmodel/thingmodel.proto -------------------------------------------------------------------------------- /pkg/lv_grpc_driver_proto/thingmodel/thingmodel_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/pkg/lv_grpc_driver_proto/thingmodel/thingmodel_grpc.pb.go -------------------------------------------------------------------------------- /resources/mapper/iot_data/iot_alert_ai_di_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_data/iot_alert_ai_di_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_data/iot_cmd_ao_do_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_data/iot_cmd_ao_do_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_data/iot_data_his_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_data/iot_data_his_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_dev/iot_device_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_dev/iot_device_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_dev/iot_prd_action_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_dev/iot_prd_action_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_dev/iot_prd_event_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_dev/iot_prd_event_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_dev/iot_prd_property_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_dev/iot_prd_property_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_dev/iot_product_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_dev/iot_product_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_driver/iot_data_his_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_driver/iot_data_his_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_driver/iot_driver_instance_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_driver/iot_driver_instance_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/iot_scene/iot_scene_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/iot_scene/iot_scene_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/mywork/app_gen_params_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/mywork/app_gen_params_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/mywork/dpc_table_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/mywork/dpc_table_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/mywork/dpc_task_item_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/mywork/dpc_task_item_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/mywork/dpc_task_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/mywork/dpc_task_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/sys_post/sys_post_mapper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/sys_post/sys_post_mapper.sql -------------------------------------------------------------------------------- /resources/mapper/sys_post/sys_post_mapper.tpl.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/mapper/sys_post/sys_post_mapper.tpl.bak -------------------------------------------------------------------------------- /resources/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/favicon.ico -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/beautifyhtml/beautifyhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/beautifyhtml/beautifyhtml.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/blockUI/jquery.blockUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/blockUI/jquery.blockUI.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-fileinput/fileinput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-fileinput/fileinput.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-fileinput/fileinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-fileinput/fileinput.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-fileinput/fileinput.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-fileinput/fileinput.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-fileinput/fileinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-fileinput/fileinput.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-fileinput/loading-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-fileinput/loading-sm.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-fileinput/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-fileinput/loading.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-select/bootstrap-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-select/bootstrap-select.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-select/bootstrap-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-select/bootstrap-select.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-select/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-select/bootstrap-select.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-select/bootstrap-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-select/bootstrap-select.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/bootstrap-table.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/bootstrap-table.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/columns/bootstrap-table-fixed-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/columns/bootstrap-table-fixed-columns.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/cookie/bootstrap-table-cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/cookie/bootstrap-table-cookie.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/custom-view/bootstrap-table-custom-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/custom-view/bootstrap-table-custom-view.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-table-editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-table-editable.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/clear.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/editable/loading.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/export/bootstrap-table-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/export/bootstrap-table-export.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/export/tableExport.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/export/tableExport.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/print/bootstrap-table-print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/print/bootstrap-table-print.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/reorder-columns/jquery.dragtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/reorder-columns/jquery.dragtable.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/reorder-rows/jquery.tablednd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/reorder-rows/jquery.tablednd.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/resizable/bootstrap-table-resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/resizable/bootstrap-table-resizable.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/resizable/jquery.resizableColumns.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/resizable/jquery.resizableColumns.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/tree/bootstrap-table-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/tree/bootstrap-table-tree.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/extensions/tree/bootstrap-table-tree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/extensions/tree/bootstrap-table-tree.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/locale/bootstrap-table-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/locale/bootstrap-table-zh-CN.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/bootstrap-table/locale/bootstrap-table-zh-CN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/bootstrap-table/locale/bootstrap-table-zh-CN.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/cropper/cropper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/cropper/cropper.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/cropper/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/cropper/cropper.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/cropper/cropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/cropper/cropper.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/cropper/cropper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/cropper/cropper.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/cxselect/jquery.cxselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/cxselect/jquery.cxselect.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/cxselect/jquery.cxselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/cxselect/jquery.cxselect.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/datapicker/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/datapicker/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/datapicker/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/datapicker/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/datapicker/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/datapicker/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/datapicker/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/datapicker/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/duallistbox/bootstrap-duallistbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/duallistbox/bootstrap-duallistbox.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/duallistbox/bootstrap-duallistbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/duallistbox/bootstrap-duallistbox.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/duallistbox/bootstrap-duallistbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/duallistbox/bootstrap-duallistbox.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/duallistbox/bootstrap-duallistbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/duallistbox/bootstrap-duallistbox.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/flot/curvedLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/flot/curvedLines.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/flot/jquery.flot.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/flot/jquery.flot.spline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/flot/jquery.flot.spline.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/flot/jquery.flot.symbol.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/flot/jquery.flot.tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/flot/jquery.flot.tooltip.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/fullscreen/jquery.fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/fullscreen/jquery.fullscreen.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/highlight/default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/highlight/default.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/highlight/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/highlight/highlight.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/iCheck/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/iCheck/custom.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/iCheck/green-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/iCheck/green-login.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/iCheck/green.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/iCheck/green@2x.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/iCheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/iCheck/icheck.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jasny/jasny-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jasny/jasny-bootstrap.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jasny/jasny-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jasny/jasny-bootstrap.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jasny/jasny-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jasny/jasny-bootstrap.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jasny/jasny-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jasny/jasny-bootstrap.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-layout/jquery.layout-latest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-layout/jquery.layout-latest.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-layout/jquery.layout-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-layout/jquery.layout-latest.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/1_close.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/1_open.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/2.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/3.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/4.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/5.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/6.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/7.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/8.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/9.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/line_conn.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/loading.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/zTreeStandard.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/img/zTreeStandard.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/default/zTreeStyle.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/line_conn.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/line_conn.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/loading.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/metro.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/metro.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/left_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/left_menu.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/left_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/left_menu.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/line_conn.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/loading.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/zTreeStandard.gif -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/zTreeStandard.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/css/simple/zTreeStyle.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.all-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.all-3.5.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.core-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.core-3.5.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.excheck-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.excheck-3.5.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.exedit-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.exedit-3.5.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.exhide-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.exhide-3.5.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jquery-ztree/3.5/log v3.x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jquery-ztree/3.5/log v3.x.txt -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jsonview/jquery.jsonview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jsonview/jquery.jsonview.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/jsonview/jquery.jsonview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/jsonview/jquery.jsonview.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/layer/css/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/layer/css/layer.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/layer/layer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/layer/layer.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/layer/theme/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/layer/theme/moon/default.png -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/layer/theme/moon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/layer/theme/moon/style.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/layui/css/modules/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/layui/css/modules/laydate.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/layui/layui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/layui/layui.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/layui/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/layui/modules/laydate.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/report/echarts/echarts-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/report/echarts/echarts-all.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/report/peity/jquery.peity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/report/peity/jquery.peity.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/report/sparkline/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/report/sparkline/jquery.sparkline.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/select2/select2-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/select2/select2-bootstrap.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/select2/select2.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/select2/select2.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/select2/select2.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/select2/select2.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/smartwizard/jquery.smartWizard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/smartwizard/jquery.smartWizard.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/smartwizard/smart_wizard_all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/smartwizard/smart_wizard_all.min.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/suggest/bootstrap-suggest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/suggest/bootstrap-suggest.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/summernote/font/summernote.eot -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/summernote/font/summernote.woff -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/summernote/font/summernote.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/summernote/font/summernote.woff2 -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/summernote/summernote-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/summernote/summernote-zh-CN.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/summernote/summernote.css -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/summernote/summernote.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/summernote/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/summernote/summernote.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/typeahead/bootstrap-typeahead.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/typeahead/bootstrap-typeahead.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/validate/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/validate/additional-methods.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/validate/jquery.validate.extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/validate/jquery.validate.extend.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/validate/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/validate/jquery.validate.min.js -------------------------------------------------------------------------------- /resources/static/resource/ajax/libs/validate/messages_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ajax/libs/validate/messages_zh.js -------------------------------------------------------------------------------- /resources/static/resource/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/animate.min.css -------------------------------------------------------------------------------- /resources/static/resource/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/bootstrap.min.css -------------------------------------------------------------------------------- /resources/static/resource/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/font-awesome.min.css -------------------------------------------------------------------------------- /resources/static/resource/css/jquery.contextMenu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/jquery.contextMenu.min.css -------------------------------------------------------------------------------- /resources/static/resource/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/login.css -------------------------------------------------------------------------------- /resources/static/resource/css/login.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/login.min.css -------------------------------------------------------------------------------- /resources/static/resource/css/skins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/skins.css -------------------------------------------------------------------------------- /resources/static/resource/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/style.css -------------------------------------------------------------------------------- /resources/static/resource/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/style.min.css -------------------------------------------------------------------------------- /resources/static/resource/css/zen-checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/css/zen-checkbox.css -------------------------------------------------------------------------------- /resources/static/resource/file/rml.txt: -------------------------------------------------------------------------------- 1 | 下载临时目录 -------------------------------------------------------------------------------- /resources/static/resource/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /resources/static/resource/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /resources/static/resource/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /resources/static/resource/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /resources/static/resource/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /resources/static/resource/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /resources/static/resource/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /resources/static/resource/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /resources/static/resource/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /resources/static/resource/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /resources/static/resource/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /resources/static/resource/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /resources/static/resource/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/iconfont.eot -------------------------------------------------------------------------------- /resources/static/resource/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/iconfont.svg -------------------------------------------------------------------------------- /resources/static/resource/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/iconfont.ttf -------------------------------------------------------------------------------- /resources/static/resource/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/iconfont.woff -------------------------------------------------------------------------------- /resources/static/resource/fonts/zenicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/fonts/zenicon.woff -------------------------------------------------------------------------------- /resources/static/resource/html/ie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/html/ie.html -------------------------------------------------------------------------------- /resources/static/resource/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/i18n/messages.properties -------------------------------------------------------------------------------- /resources/static/resource/img/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/blue.png -------------------------------------------------------------------------------- /resources/static/resource/img/head_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/head_bg.png -------------------------------------------------------------------------------- /resources/static/resource/img/iot/img_prd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/iot/img_prd.png -------------------------------------------------------------------------------- /resources/static/resource/img/loading-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/loading-upload.gif -------------------------------------------------------------------------------- /resources/static/resource/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/loading.gif -------------------------------------------------------------------------------- /resources/static/resource/img/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/locked.png -------------------------------------------------------------------------------- /resources/static/resource/img/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/login-background.jpg -------------------------------------------------------------------------------- /resources/static/resource/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/profile.jpg -------------------------------------------------------------------------------- /resources/static/resource/img/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/progress.png -------------------------------------------------------------------------------- /resources/static/resource/img/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/qr_code.png -------------------------------------------------------------------------------- /resources/static/resource/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/img/user.png -------------------------------------------------------------------------------- /resources/static/resource/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/bootstrap.min.js -------------------------------------------------------------------------------- /resources/static/resource/js/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/cron.js -------------------------------------------------------------------------------- /resources/static/resource/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /resources/static/resource/js/jquery.contextMenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/jquery.contextMenu.min.js -------------------------------------------------------------------------------- /resources/static/resource/js/jquery.i18n.properties.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/jquery.i18n.properties.min.js -------------------------------------------------------------------------------- /resources/static/resource/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/jquery.min.js -------------------------------------------------------------------------------- /resources/static/resource/js/jquery.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/jquery.tmpl.js -------------------------------------------------------------------------------- /resources/static/resource/js/plugins/metisMenu/jquery.metisMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/plugins/metisMenu/jquery.metisMenu.js -------------------------------------------------------------------------------- /resources/static/resource/js/plugins/slimscroll/jquery.slimscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/plugins/slimscroll/jquery.slimscroll.min.js -------------------------------------------------------------------------------- /resources/static/resource/js/resize-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/resize-tabs.js -------------------------------------------------------------------------------- /resources/static/resource/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/js/three.min.js -------------------------------------------------------------------------------- /resources/static/resource/lostvip/ry-ext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/lostvip/ry-ext.css -------------------------------------------------------------------------------- /resources/static/resource/lostvip/ry-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/lostvip/ry-ext.js -------------------------------------------------------------------------------- /resources/static/resource/ruoyi/css/ry-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ruoyi/css/ry-ui.css -------------------------------------------------------------------------------- /resources/static/resource/ruoyi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ruoyi/index.js -------------------------------------------------------------------------------- /resources/static/resource/ruoyi/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ruoyi/js/common.js -------------------------------------------------------------------------------- /resources/static/resource/ruoyi/js/ry-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ruoyi/js/ry-ui.js -------------------------------------------------------------------------------- /resources/static/resource/ruoyi/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ruoyi/login.js -------------------------------------------------------------------------------- /resources/static/resource/ruoyi/login.js.ruoyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ruoyi/login.js.ruoyi -------------------------------------------------------------------------------- /resources/static/resource/ruoyi/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/resource/ruoyi/register.js -------------------------------------------------------------------------------- /resources/static/upload/admin1624295586540255700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/upload/admin1624295586540255700.png -------------------------------------------------------------------------------- /resources/static/upload/admin1694703638771106900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/static/upload/admin1694703638771106900.png -------------------------------------------------------------------------------- /resources/template/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/template/demo/dpc/wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/dpc/wizard.html -------------------------------------------------------------------------------- /resources/template/demo/form/autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/autocomplete.html -------------------------------------------------------------------------------- /resources/template/demo/form/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/basic.html -------------------------------------------------------------------------------- /resources/template/demo/form/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/button.html -------------------------------------------------------------------------------- /resources/template/demo/form/cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/cards.html -------------------------------------------------------------------------------- /resources/template/demo/form/datetime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/datetime.html -------------------------------------------------------------------------------- /resources/template/demo/form/duallistbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/duallistbox.html -------------------------------------------------------------------------------- /resources/template/demo/form/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/grid.html -------------------------------------------------------------------------------- /resources/template/demo/form/jasny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/jasny.html -------------------------------------------------------------------------------- /resources/template/demo/form/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/select.html -------------------------------------------------------------------------------- /resources/template/demo/form/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/sortable.html -------------------------------------------------------------------------------- /resources/template/demo/form/summernote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/summernote.html -------------------------------------------------------------------------------- /resources/template/demo/form/tabs_panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/tabs_panels.html -------------------------------------------------------------------------------- /resources/template/demo/form/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/timeline.html -------------------------------------------------------------------------------- /resources/template/demo/form/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/upload.html -------------------------------------------------------------------------------- /resources/template/demo/form/validate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/validate.html -------------------------------------------------------------------------------- /resources/template/demo/form/wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/form/wizard.html -------------------------------------------------------------------------------- /resources/template/demo/icon/fontawesome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/icon/fontawesome.html -------------------------------------------------------------------------------- /resources/template/demo/icon/glyphicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/icon/glyphicons.html -------------------------------------------------------------------------------- /resources/template/demo/modal/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/modal/dialog.html -------------------------------------------------------------------------------- /resources/template/demo/modal/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/modal/form.html -------------------------------------------------------------------------------- /resources/template/demo/modal/layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/modal/layer.html -------------------------------------------------------------------------------- /resources/template/demo/modal/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/modal/table.html -------------------------------------------------------------------------------- /resources/template/demo/modal/table/check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/modal/table/check.html -------------------------------------------------------------------------------- /resources/template/demo/modal/table/parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/modal/table/parent.html -------------------------------------------------------------------------------- /resources/template/demo/modal/table/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/modal/table/radio.html -------------------------------------------------------------------------------- /resources/template/demo/operate/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/operate/add.html -------------------------------------------------------------------------------- /resources/template/demo/operate/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/operate/detail.html -------------------------------------------------------------------------------- /resources/template/demo/operate/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/operate/edit.html -------------------------------------------------------------------------------- /resources/template/demo/operate/other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/operate/other.html -------------------------------------------------------------------------------- /resources/template/demo/operate/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/operate/table.html -------------------------------------------------------------------------------- /resources/template/demo/report/echarts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/report/echarts.html -------------------------------------------------------------------------------- /resources/template/demo/report/metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/report/metrics.html -------------------------------------------------------------------------------- /resources/template/demo/report/peity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/report/peity.html -------------------------------------------------------------------------------- /resources/template/demo/report/sparkline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/report/sparkline.html -------------------------------------------------------------------------------- /resources/template/demo/table/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/button.html -------------------------------------------------------------------------------- /resources/template/demo/table/child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/child.html -------------------------------------------------------------------------------- /resources/template/demo/table/curd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/curd.html -------------------------------------------------------------------------------- /resources/template/demo/table/customView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/customView.html -------------------------------------------------------------------------------- /resources/template/demo/table/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/detail.html -------------------------------------------------------------------------------- /resources/template/demo/table/editable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/editable.html -------------------------------------------------------------------------------- /resources/template/demo/table/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/event.html -------------------------------------------------------------------------------- /resources/template/demo/table/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/export.html -------------------------------------------------------------------------------- /resources/template/demo/table/fixedColumns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/fixedColumns.html -------------------------------------------------------------------------------- /resources/template/demo/table/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/footer.html -------------------------------------------------------------------------------- /resources/template/demo/table/groupHeader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/groupHeader.html -------------------------------------------------------------------------------- /resources/template/demo/table/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/image.html -------------------------------------------------------------------------------- /resources/template/demo/table/multi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/multi.html -------------------------------------------------------------------------------- /resources/template/demo/table/other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/other.html -------------------------------------------------------------------------------- /resources/template/demo/table/pageGo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/pageGo.html -------------------------------------------------------------------------------- /resources/template/demo/table/params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/params.html -------------------------------------------------------------------------------- /resources/template/demo/table/recorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/recorder.html -------------------------------------------------------------------------------- /resources/template/demo/table/remember.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/remember.html -------------------------------------------------------------------------------- /resources/template/demo/table/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/search.html -------------------------------------------------------------------------------- /resources/template/demo/table/subdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/demo/table/subdata.html -------------------------------------------------------------------------------- /resources/template/error/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/error/404.html -------------------------------------------------------------------------------- /resources/template/error/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/error/500.html -------------------------------------------------------------------------------- /resources/template/error/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/error/error.html -------------------------------------------------------------------------------- /resources/template/error/unauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/error/unauth.html -------------------------------------------------------------------------------- /resources/template/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/footer.html -------------------------------------------------------------------------------- /resources/template/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/header.html -------------------------------------------------------------------------------- /resources/template/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/home.html -------------------------------------------------------------------------------- /resources/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/index.html -------------------------------------------------------------------------------- /resources/template/index_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/index_left.html -------------------------------------------------------------------------------- /resources/template/lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/lock.html -------------------------------------------------------------------------------- /resources/template/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/login.html -------------------------------------------------------------------------------- /resources/template/monitor/detail_oper_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/detail_oper_log.html -------------------------------------------------------------------------------- /resources/template/monitor/job/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/job/add.html -------------------------------------------------------------------------------- /resources/template/monitor/job/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/job/detail.html -------------------------------------------------------------------------------- /resources/template/monitor/job/detailLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/job/detailLog.html -------------------------------------------------------------------------------- /resources/template/monitor/job/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/job/edit.html -------------------------------------------------------------------------------- /resources/template/monitor/job/jobLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/job/jobLog.html -------------------------------------------------------------------------------- /resources/template/monitor/job/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/job/list.html -------------------------------------------------------------------------------- /resources/template/monitor/list_login_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/list_login_info.html -------------------------------------------------------------------------------- /resources/template/monitor/list_online.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/list_online.html -------------------------------------------------------------------------------- /resources/template/monitor/list_oper_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/list_oper_log.html -------------------------------------------------------------------------------- /resources/template/monitor/server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/monitor/server.html -------------------------------------------------------------------------------- /resources/template/mywork/his_data_wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/his_data_wizard.html -------------------------------------------------------------------------------- /resources/template/mywork/item/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/item/add.html -------------------------------------------------------------------------------- /resources/template/mywork/item/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/item/edit.html -------------------------------------------------------------------------------- /resources/template/mywork/item/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/item/list.html -------------------------------------------------------------------------------- /resources/template/mywork/params/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/params/add.html -------------------------------------------------------------------------------- /resources/template/mywork/params/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/params/edit.html -------------------------------------------------------------------------------- /resources/template/mywork/params/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/params/list.html -------------------------------------------------------------------------------- /resources/template/mywork/table/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/table/add.html -------------------------------------------------------------------------------- /resources/template/mywork/table/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/table/edit.html -------------------------------------------------------------------------------- /resources/template/mywork/table/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/table/list.html -------------------------------------------------------------------------------- /resources/template/mywork/task/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/task/add.html -------------------------------------------------------------------------------- /resources/template/mywork/task/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/task/edit.html -------------------------------------------------------------------------------- /resources/template/mywork/task/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/mywork/task/list.html -------------------------------------------------------------------------------- /resources/template/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/register.html -------------------------------------------------------------------------------- /resources/template/skin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/skin.html -------------------------------------------------------------------------------- /resources/template/skin2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/skin2.html -------------------------------------------------------------------------------- /resources/template/system/config/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/config/add.html -------------------------------------------------------------------------------- /resources/template/system/config/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/config/edit.html -------------------------------------------------------------------------------- /resources/template/system/config/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/config/list.html -------------------------------------------------------------------------------- /resources/template/system/dept/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dept/add.html -------------------------------------------------------------------------------- /resources/template/system/dept/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dept/edit.html -------------------------------------------------------------------------------- /resources/template/system/dept/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dept/list.html -------------------------------------------------------------------------------- /resources/template/system/dept/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dept/tree.html -------------------------------------------------------------------------------- /resources/template/system/dict/data/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dict/data/add.html -------------------------------------------------------------------------------- /resources/template/system/dict/data/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dict/data/edit.html -------------------------------------------------------------------------------- /resources/template/system/dict/data/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dict/data/list.html -------------------------------------------------------------------------------- /resources/template/system/dict/type/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dict/type/add.html -------------------------------------------------------------------------------- /resources/template/system/dict/type/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dict/type/edit.html -------------------------------------------------------------------------------- /resources/template/system/dict/type/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dict/type/list.html -------------------------------------------------------------------------------- /resources/template/system/dict/type/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/dict/type/tree.html -------------------------------------------------------------------------------- /resources/template/system/menu/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/menu/add.html -------------------------------------------------------------------------------- /resources/template/system/menu/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/menu/edit.html -------------------------------------------------------------------------------- /resources/template/system/menu/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/menu/icon.html -------------------------------------------------------------------------------- /resources/template/system/menu/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/menu/list.html -------------------------------------------------------------------------------- /resources/template/system/menu/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/menu/tree.html -------------------------------------------------------------------------------- /resources/template/system/post/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/post/add.html -------------------------------------------------------------------------------- /resources/template/system/post/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/post/edit.html -------------------------------------------------------------------------------- /resources/template/system/post/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/post/list.html -------------------------------------------------------------------------------- /resources/template/system/role/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/role/add.html -------------------------------------------------------------------------------- /resources/template/system/role/authUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/role/authUser.html -------------------------------------------------------------------------------- /resources/template/system/role/dataScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/role/dataScope.html -------------------------------------------------------------------------------- /resources/template/system/role/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/role/edit.html -------------------------------------------------------------------------------- /resources/template/system/role/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/role/list.html -------------------------------------------------------------------------------- /resources/template/system/role/selectUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/role/selectUser.html -------------------------------------------------------------------------------- /resources/template/system/user/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/user/add.html -------------------------------------------------------------------------------- /resources/template/system/user/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/user/edit.html -------------------------------------------------------------------------------- /resources/template/system/user/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/user/list.html -------------------------------------------------------------------------------- /resources/template/system/user/profile/avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/user/profile/avatar.html -------------------------------------------------------------------------------- /resources/template/system/user/profile/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/user/profile/profile.html -------------------------------------------------------------------------------- /resources/template/system/user/profile/resetPwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/user/profile/resetPwd.html -------------------------------------------------------------------------------- /resources/template/system/user/resetPwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/system/user/resetPwd.html -------------------------------------------------------------------------------- /resources/template/tool/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/tool/build.html -------------------------------------------------------------------------------- /resources/template/tool/gen_edit_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/tool/gen_edit_table.html -------------------------------------------------------------------------------- /resources/template/tool/gen_import_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/tool/gen_import_table.html -------------------------------------------------------------------------------- /resources/template/tool/gen_list_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/template/tool/gen_list_tables.html -------------------------------------------------------------------------------- /resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/controller/{{.ClassName}}Api.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/controller/{{.ClassName}}Api.go.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/controller/{{.ClassName}}Controller.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/controller/{{.ClassName}}Controller.go.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/dao/{{.ClassName}}Dao.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/dao/{{.ClassName}}Dao.go.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/model/{{.ClassName}}.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/model/{{.ClassName}}.go.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/service/{{.ClassName}}Service.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/service/{{.ClassName}}Service.go.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/vo/{{.ClassName}}VO.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/vo/{{.ClassName}}VO.go.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/{{.TbName}}_router.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/modules/{{.ModuleName}}/internal/{{.PackageName}}/{{.TbName}}_router.go.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/resources/mapper/{{.PackageName}}/{{.TbName}}_mapper.sql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/resources/mapper/{{.PackageName}}/{{.TbName}}_mapper.sql.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/resources/template/{{.PackageName}}/add_{{.BusinessName}}.html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/resources/template/{{.PackageName}}/add_{{.BusinessName}}.html.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/resources/template/{{.PackageName}}/edit_{{.BusinessName}}.html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/resources/template/{{.PackageName}}/edit_{{.BusinessName}}.html.tpl -------------------------------------------------------------------------------- /resources/tpl_gen/resources/template/{{.PackageName}}/list_{{.BusinessName}}.html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostvip-com/ruoyi-go/HEAD/resources/tpl_gen/resources/template/{{.PackageName}}/list_{{.BusinessName}}.html.tpl --------------------------------------------------------------------------------