├── .DS_Store ├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.MD ├── app ├── controller │ ├── api │ │ ├── api_router.go │ │ └── login │ │ │ └── login_controller.go │ ├── demo │ │ ├── demo_router.go │ │ ├── form │ │ │ └── form_controller.go │ │ ├── icon │ │ │ └── icon_controller.go │ │ ├── modal │ │ │ └── modal_controller.go │ │ ├── operate │ │ │ └── operate_controller.go │ │ ├── report │ │ │ └── report_controller.go │ │ └── table │ │ │ └── table_controller.go │ ├── hello │ │ └── hello_controller.go │ ├── module │ │ └── module_route.go │ ├── monitor │ │ ├── job │ │ │ └── job_controller.go │ │ ├── logininfor │ │ │ └── logininfor_controller.go │ │ ├── monitor_router.go │ │ ├── online │ │ │ └── online_controller.go │ │ ├── operlog │ │ │ └── operlog_controller.go │ │ └── server │ │ │ └── server_controller.go │ ├── system │ │ ├── config │ │ │ └── config_controller.go │ │ ├── config_router.go │ │ ├── dept │ │ │ └── dept_controller.go │ │ ├── dept_router.go │ │ ├── dict_data │ │ │ └── dict_data_controller.go │ │ ├── dict_data_router.go │ │ ├── dict_type │ │ │ └── dict_type_controller.go │ │ ├── dict_type_router.go │ │ ├── error │ │ │ └── error_controller.go │ │ ├── index │ │ │ ├── index_controller.go │ │ │ └── login_controller.go │ │ ├── index_router.go │ │ ├── menu │ │ │ └── menu_controller.go │ │ ├── menu_router.go │ │ ├── post │ │ │ └── post_controller.go │ │ ├── post_router.go │ │ ├── role │ │ │ └── role_controller.go │ │ ├── role_router.go │ │ ├── user │ │ │ ├── profile_controller.go │ │ │ └── user_controller.go │ │ └── user_router.go │ └── tool │ │ ├── gen │ │ └── gen_controller.go │ │ ├── tool_controller.go │ │ └── tool_router.go ├── model │ ├── .gitkeep │ ├── common.go │ ├── module │ │ ├── answer │ │ │ ├── answer.go │ │ │ ├── answer_entity.go │ │ │ └── answer_model.go │ │ ├── notice │ │ │ ├── notice.go │ │ │ ├── notice_entity.go │ │ │ └── notice_model.go │ │ ├── problem │ │ │ ├── problem.go │ │ │ ├── problem_entity.go │ │ │ └── problem_model.go │ │ ├── user_withdrawals │ │ │ ├── user_withdrawals.go │ │ │ ├── user_withdrawals_entity.go │ │ │ └── user_withdrawals_model.go │ │ ├── zjuser │ │ │ ├── zjuser.go │ │ │ ├── zjuser_entity.go │ │ │ └── zjuser_model.go │ │ └── zxuser │ │ │ ├── zxuser.go │ │ │ ├── zxuser_entity.go │ │ │ └── zxuser_model.go │ ├── monitor │ │ ├── job │ │ │ ├── job.go │ │ │ ├── job_entity.go │ │ │ └── job_model.go │ │ ├── job_log │ │ │ ├── job_log.go │ │ │ ├── job_log_entity.go │ │ │ └── job_log_model.go │ │ ├── logininfor │ │ │ ├── logininfor.go │ │ │ ├── logininfor_entity.go │ │ │ └── logininfor_model.go │ │ ├── online │ │ │ ├── online.go │ │ │ ├── online_entity.go │ │ │ └── online_model.go │ │ └── oper_log │ │ │ ├── oper_log.go │ │ │ ├── oper_log_entity.go │ │ │ └── oper_log_model.go │ ├── system │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_entity.go │ │ │ └── config_model.go │ │ ├── dept │ │ │ ├── dept.go │ │ │ ├── dept_entity.go │ │ │ └── dept_model.go │ │ ├── dict_data │ │ │ ├── dict_data.go │ │ │ ├── dict_data_entity.go │ │ │ └── dict_data_model.go │ │ ├── dict_type │ │ │ ├── dict_type.go │ │ │ ├── dict_type_entity.go │ │ │ └── dict_type_model.go │ │ ├── menu │ │ │ ├── menu.go │ │ │ ├── menu_entity.go │ │ │ └── menu_model.go │ │ ├── post │ │ │ ├── post.go │ │ │ ├── post_entity.go │ │ │ └── post_model.go │ │ ├── role │ │ │ ├── role.go │ │ │ ├── role_entity.go │ │ │ └── role_model.go │ │ ├── role_dept │ │ │ ├── role_dept.go │ │ │ ├── role_dept_entity.go │ │ │ └── role_dept_model.go │ │ ├── role_menu │ │ │ ├── role_menu.go │ │ │ ├── role_menu_entity.go │ │ │ └── role_menu_model.go │ │ ├── user │ │ │ ├── user.go │ │ │ ├── user_entity.go │ │ │ └── user_model.go │ │ ├── user_online │ │ │ ├── user_online.go │ │ │ ├── user_online_entity.go │ │ │ └── user_online_model.go │ │ ├── user_post │ │ │ ├── user_post.go │ │ │ ├── user_post_entity.go │ │ │ └── user_post_model.go │ │ └── user_role │ │ │ ├── user_role.go │ │ │ ├── user_role_entity.go │ │ │ └── user_role_model.go │ └── tool │ │ ├── table │ │ ├── table.go │ │ ├── table_entity.go │ │ └── table_model.go │ │ └── table_column │ │ ├── table_column.go │ │ ├── table_column_entity.go │ │ └── table_column_model.go ├── service │ ├── .gitkeep │ ├── middleware │ │ ├── auth │ │ │ └── auth.go │ │ ├── cors │ │ │ └── cors.go │ │ ├── jwt │ │ │ └── jwt.go │ │ └── router │ │ │ └── router.go │ ├── monitor │ │ ├── job │ │ │ └── job_service.go │ │ ├── job_log │ │ │ └── job_log_service.go │ │ ├── logininfor │ │ │ └── logininfor_service.go │ │ ├── online │ │ │ └── online_service.go │ │ └── operlog │ │ │ └── operlog_service.go │ ├── system │ │ ├── config │ │ │ └── config_service.go │ │ ├── dept │ │ │ └── dept_service.go │ │ ├── dict │ │ │ └── dict_service.go │ │ ├── dict_data │ │ │ └── dict_data_service.go │ │ ├── dict_type │ │ │ └── dict_type_service.go │ │ ├── menu │ │ │ └── menu_service.go │ │ ├── permission │ │ │ └── permission_service.go │ │ ├── post │ │ │ └── post_service.go │ │ ├── role │ │ │ └── role_service.go │ │ └── user │ │ │ └── user_service.go │ └── tool │ │ ├── table │ │ └── table_service.go │ │ └── table_column │ │ └── table_column_service.go ├── task │ ├── config.go │ └── test.go └── utils │ ├── convert │ └── convert.go │ ├── excel │ └── excel.go │ ├── ip │ ├── iptocity.go │ ├── iptocity_test.go │ └── localip.go │ ├── page │ ├── paging.go │ └── table_data_info.go │ ├── random │ └── random.go │ ├── response │ ├── api_response.go │ ├── table_response.go │ └── tpl_response.go │ ├── time │ └── time_utils.go │ └── token │ └── token.go ├── boot ├── .gitkeep └── boot.go ├── config ├── .gitkeep └── config.toml ├── docker └── .gitkeep ├── document ├── .gitkeep └── sql │ └── yjgo_2020-03-29.sql ├── go.mod ├── i18n └── .gitkeep ├── main.go ├── public ├── favicon.ico ├── html │ └── .gitkeep ├── plugin │ └── .gitkeep ├── resource │ ├── .DS_Store │ ├── 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 │ │ │ │ ├── columns │ │ │ │ │ └── bootstrap-table-fixed-columns.js │ │ │ │ ├── editable │ │ │ │ │ ├── bootstrap-editable.css │ │ │ │ │ ├── bootstrap-editable.min.js │ │ │ │ │ ├── bootstrap-table-editable.js │ │ │ │ │ ├── clear.png │ │ │ │ │ └── loading.gif │ │ │ │ ├── export │ │ │ │ │ ├── bootstrap-table-export.js │ │ │ │ │ └── tableExport.js │ │ │ │ ├── mobile │ │ │ │ │ └── bootstrap-table-mobile.js │ │ │ │ ├── reorder │ │ │ │ │ ├── bootstrap-table-reorder.js │ │ │ │ │ └── jquery.tablednd.js │ │ │ │ └── toolbar │ │ │ │ │ ├── bootstrap-table-toolbar.js │ │ │ │ │ └── bootstrap-table-toolbar.min.js │ │ │ └── locale │ │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ │ └── bootstrap-table-zh-CN.min.js │ │ │ ├── bootstrap-treetable │ │ │ └── bootstrap-treetable.js │ │ │ ├── cropbox │ │ │ ├── cropbox.css │ │ │ └── cropbox.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 │ │ │ ├── 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 │ │ │ ├── layer.min.js │ │ │ └── theme │ │ │ │ ├── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ │ └── moon │ │ │ │ ├── default.png │ │ │ │ └── style.css │ │ │ ├── layui │ │ │ ├── css │ │ │ │ └── modules │ │ │ │ │ └── laydate │ │ │ │ │ └── default │ │ │ │ │ ├── font │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.svg │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ │ └── laydate.css │ │ │ ├── lay │ │ │ │ └── modules │ │ │ │ │ └── laydate.js │ │ │ └── layui.js │ │ │ ├── report │ │ │ ├── echarts │ │ │ │ └── echarts-all.js │ │ │ ├── peity │ │ │ │ └── jquery.peity.min.js │ │ │ └── sparkline │ │ │ │ └── jquery.sparkline.min.js │ │ │ ├── select2 │ │ │ ├── select2-bootstrap.css │ │ │ ├── select2.css │ │ │ ├── select2.js │ │ │ ├── select2.min.css │ │ │ └── select2.min.js │ │ │ ├── staps │ │ │ ├── jquery.steps.css │ │ │ ├── jquery.steps.js │ │ │ └── jquery.steps.min.js │ │ │ ├── suggest │ │ │ ├── bootstrap-suggest.js │ │ │ └── bootstrap-suggest.min.js │ │ │ ├── summernote │ │ │ ├── font │ │ │ │ ├── summernote.eot │ │ │ │ ├── summernote.ttf │ │ │ │ └── summernote.woff │ │ │ ├── summernote-bs3.css │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ │ │ ├── typeahead │ │ │ ├── bootstrap3-typeahead.js │ │ │ └── bootstrap3-typeahead.min.js │ │ │ └── validate │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.extend.js │ │ │ ├── jquery.validate.min.js │ │ │ └── messages_zh.min.js │ ├── css │ │ ├── .gitkeep │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── jquery.contextMenu.min.css │ │ ├── login.css │ │ ├── login.min.css │ │ ├── main │ │ │ ├── animate.min.css │ │ │ ├── bootstrap.min14ed.css │ │ │ ├── font-awesome.min93e3.css │ │ │ └── style.min862f.css │ │ ├── patterns │ │ │ ├── header-profile-skin-blue.png │ │ │ ├── header-profile-skin-yellow.png │ │ │ ├── header-profile.png │ │ │ └── shattered.png │ │ ├── skins.css │ │ └── style.css │ ├── favicon.ico │ ├── 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 │ ├── i18n │ │ └── messages.properties │ ├── image │ │ └── .gitkeep │ ├── img │ │ ├── blue.png │ │ ├── loading-upload.gif │ │ ├── loading.gif │ │ ├── locked.png │ │ ├── login-background.jpg │ │ ├── profile.jpg │ │ ├── progress.png │ │ └── user.png │ ├── js │ │ ├── .gitkeep │ │ ├── bootstrap.min.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 │ └── yunfan │ │ ├── css │ │ └── yf-ui.css │ │ ├── index.js │ │ ├── js │ │ ├── common.js │ │ └── yf-ui.js │ │ └── login.js ├── swagger │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ ├── swagger-ui.js.map │ └── swagger.json └── upload │ ├── 1579691254993208000.xls │ ├── admin1579180516186761000.png │ ├── b5bba686b08.png │ └── b5bba7599aa.png ├── router └── router.go └── template ├── .gitkeep ├── demo ├── .DS_Store ├── 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 │ ├── 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 ├── error ├── 404.html ├── 500.html ├── error.html └── unauth.html ├── footer.html ├── header.html ├── include.html ├── include ├── bootstrap-duallistbox-css.html ├── bootstrap-duallistbox-js.html ├── bootstrap-editable-css.html ├── bootstrap-fileinput-css.html ├── bootstrap-fileinput-js.html ├── bootstrap-select-css.html ├── bootstrap-select-js.html ├── bootstrap-suggest-js.html ├── bootstrap-table-reorder-js.html ├── bootstrap-typeahead-js.html ├── cropbox-css.html ├── cropbox-js.html ├── datetimepicker-css.html ├── datetimepicker-js.html ├── echarts-js.html ├── jasny-bootstrap-css.html ├── jasny-bootstrap-js.html ├── jquery-steps-css.html ├── jquery-steps-js.html ├── jsonview-css.html ├── jsonview-js.html ├── layout-latest-css.html ├── layout-latest-js.html ├── peity-js.html ├── select2-css.html ├── select2-js.html ├── sparkline-js.html ├── summernote-css.html ├── summernote-js.html ├── ztree-css.html └── ztree-js.html ├── index.html ├── login.html ├── main.html ├── main_v2.html ├── monitor ├── .DS_Store ├── job │ ├── .DS_Store │ ├── add.html │ ├── detail.html │ ├── detailLog.html │ ├── edit.html │ ├── jobLog.html │ └── list.html ├── logininfor │ └── list.html ├── online │ └── list.html ├── operlog │ ├── detail.html │ └── list.html └── server │ └── server.html ├── skin.html ├── system ├── .DS_Store ├── 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.html │ ├── importTable.html │ └── list.html └── vm ├── go ├── controller.html ├── entity.html ├── extend.html ├── model.html ├── router.html └── service.html ├── html ├── add.html ├── edit.html ├── list-tree.html ├── list.html └── tree.html └── sql └── sql.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/README.MD -------------------------------------------------------------------------------- /app/controller/api/api_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/api/api_router.go -------------------------------------------------------------------------------- /app/controller/api/login/login_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/api/login/login_controller.go -------------------------------------------------------------------------------- /app/controller/demo/demo_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/demo/demo_router.go -------------------------------------------------------------------------------- /app/controller/demo/form/form_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/demo/form/form_controller.go -------------------------------------------------------------------------------- /app/controller/demo/icon/icon_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/demo/icon/icon_controller.go -------------------------------------------------------------------------------- /app/controller/demo/modal/modal_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/demo/modal/modal_controller.go -------------------------------------------------------------------------------- /app/controller/demo/operate/operate_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/demo/operate/operate_controller.go -------------------------------------------------------------------------------- /app/controller/demo/report/report_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/demo/report/report_controller.go -------------------------------------------------------------------------------- /app/controller/demo/table/table_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/demo/table/table_controller.go -------------------------------------------------------------------------------- /app/controller/hello/hello_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/hello/hello_controller.go -------------------------------------------------------------------------------- /app/controller/module/module_route.go: -------------------------------------------------------------------------------- 1 | package module 2 | -------------------------------------------------------------------------------- /app/controller/monitor/job/job_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/monitor/job/job_controller.go -------------------------------------------------------------------------------- /app/controller/monitor/logininfor/logininfor_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/monitor/logininfor/logininfor_controller.go -------------------------------------------------------------------------------- /app/controller/monitor/monitor_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/monitor/monitor_router.go -------------------------------------------------------------------------------- /app/controller/monitor/online/online_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/monitor/online/online_controller.go -------------------------------------------------------------------------------- /app/controller/monitor/operlog/operlog_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/monitor/operlog/operlog_controller.go -------------------------------------------------------------------------------- /app/controller/monitor/server/server_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/monitor/server/server_controller.go -------------------------------------------------------------------------------- /app/controller/system/config/config_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/config/config_controller.go -------------------------------------------------------------------------------- /app/controller/system/config_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/config_router.go -------------------------------------------------------------------------------- /app/controller/system/dept/dept_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/dept/dept_controller.go -------------------------------------------------------------------------------- /app/controller/system/dept_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/dept_router.go -------------------------------------------------------------------------------- /app/controller/system/dict_data/dict_data_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/dict_data/dict_data_controller.go -------------------------------------------------------------------------------- /app/controller/system/dict_data_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/dict_data_router.go -------------------------------------------------------------------------------- /app/controller/system/dict_type/dict_type_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/dict_type/dict_type_controller.go -------------------------------------------------------------------------------- /app/controller/system/dict_type_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/dict_type_router.go -------------------------------------------------------------------------------- /app/controller/system/error/error_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/error/error_controller.go -------------------------------------------------------------------------------- /app/controller/system/index/index_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/index/index_controller.go -------------------------------------------------------------------------------- /app/controller/system/index/login_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/index/login_controller.go -------------------------------------------------------------------------------- /app/controller/system/index_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/index_router.go -------------------------------------------------------------------------------- /app/controller/system/menu/menu_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/menu/menu_controller.go -------------------------------------------------------------------------------- /app/controller/system/menu_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/menu_router.go -------------------------------------------------------------------------------- /app/controller/system/post/post_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/post/post_controller.go -------------------------------------------------------------------------------- /app/controller/system/post_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/post_router.go -------------------------------------------------------------------------------- /app/controller/system/role/role_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/role/role_controller.go -------------------------------------------------------------------------------- /app/controller/system/role_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/role_router.go -------------------------------------------------------------------------------- /app/controller/system/user/profile_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/user/profile_controller.go -------------------------------------------------------------------------------- /app/controller/system/user/user_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/user/user_controller.go -------------------------------------------------------------------------------- /app/controller/system/user_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/system/user_router.go -------------------------------------------------------------------------------- /app/controller/tool/gen/gen_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/tool/gen/gen_controller.go -------------------------------------------------------------------------------- /app/controller/tool/tool_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/tool/tool_controller.go -------------------------------------------------------------------------------- /app/controller/tool/tool_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/controller/tool/tool_router.go -------------------------------------------------------------------------------- /app/model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/model/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/common.go -------------------------------------------------------------------------------- /app/model/module/answer/answer.go: -------------------------------------------------------------------------------- 1 | package answer 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/module/answer/answer_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/answer/answer_entity.go -------------------------------------------------------------------------------- /app/model/module/answer/answer_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/answer/answer_model.go -------------------------------------------------------------------------------- /app/model/module/notice/notice.go: -------------------------------------------------------------------------------- 1 | package notice 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/module/notice/notice_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/notice/notice_entity.go -------------------------------------------------------------------------------- /app/model/module/notice/notice_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/notice/notice_model.go -------------------------------------------------------------------------------- /app/model/module/problem/problem.go: -------------------------------------------------------------------------------- 1 | package problem 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/module/problem/problem_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/problem/problem_entity.go -------------------------------------------------------------------------------- /app/model/module/problem/problem_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/problem/problem_model.go -------------------------------------------------------------------------------- /app/model/module/user_withdrawals/user_withdrawals.go: -------------------------------------------------------------------------------- 1 | package user_withdrawals 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/module/user_withdrawals/user_withdrawals_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/user_withdrawals/user_withdrawals_entity.go -------------------------------------------------------------------------------- /app/model/module/user_withdrawals/user_withdrawals_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/user_withdrawals/user_withdrawals_model.go -------------------------------------------------------------------------------- /app/model/module/zjuser/zjuser.go: -------------------------------------------------------------------------------- 1 | package zjuser 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/module/zjuser/zjuser_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/zjuser/zjuser_entity.go -------------------------------------------------------------------------------- /app/model/module/zjuser/zjuser_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/zjuser/zjuser_model.go -------------------------------------------------------------------------------- /app/model/module/zxuser/zxuser.go: -------------------------------------------------------------------------------- 1 | package zxuser 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/module/zxuser/zxuser_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/zxuser/zxuser_entity.go -------------------------------------------------------------------------------- /app/model/module/zxuser/zxuser_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/module/zxuser/zxuser_model.go -------------------------------------------------------------------------------- /app/model/monitor/job/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/job/job.go -------------------------------------------------------------------------------- /app/model/monitor/job/job_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/job/job_entity.go -------------------------------------------------------------------------------- /app/model/monitor/job/job_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/job/job_model.go -------------------------------------------------------------------------------- /app/model/monitor/job_log/job_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/job_log/job_log.go -------------------------------------------------------------------------------- /app/model/monitor/job_log/job_log_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/job_log/job_log_entity.go -------------------------------------------------------------------------------- /app/model/monitor/job_log/job_log_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/job_log/job_log_model.go -------------------------------------------------------------------------------- /app/model/monitor/logininfor/logininfor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/logininfor/logininfor.go -------------------------------------------------------------------------------- /app/model/monitor/logininfor/logininfor_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/logininfor/logininfor_entity.go -------------------------------------------------------------------------------- /app/model/monitor/logininfor/logininfor_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/logininfor/logininfor_model.go -------------------------------------------------------------------------------- /app/model/monitor/online/online.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/online/online.go -------------------------------------------------------------------------------- /app/model/monitor/online/online_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/online/online_entity.go -------------------------------------------------------------------------------- /app/model/monitor/online/online_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/online/online_model.go -------------------------------------------------------------------------------- /app/model/monitor/oper_log/oper_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/oper_log/oper_log.go -------------------------------------------------------------------------------- /app/model/monitor/oper_log/oper_log_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/oper_log/oper_log_entity.go -------------------------------------------------------------------------------- /app/model/monitor/oper_log/oper_log_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/monitor/oper_log/oper_log_model.go -------------------------------------------------------------------------------- /app/model/system/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/config/config.go -------------------------------------------------------------------------------- /app/model/system/config/config_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/config/config_entity.go -------------------------------------------------------------------------------- /app/model/system/config/config_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/config/config_model.go -------------------------------------------------------------------------------- /app/model/system/dept/dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dept/dept.go -------------------------------------------------------------------------------- /app/model/system/dept/dept_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dept/dept_entity.go -------------------------------------------------------------------------------- /app/model/system/dept/dept_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dept/dept_model.go -------------------------------------------------------------------------------- /app/model/system/dict_data/dict_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dict_data/dict_data.go -------------------------------------------------------------------------------- /app/model/system/dict_data/dict_data_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dict_data/dict_data_entity.go -------------------------------------------------------------------------------- /app/model/system/dict_data/dict_data_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dict_data/dict_data_model.go -------------------------------------------------------------------------------- /app/model/system/dict_type/dict_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dict_type/dict_type.go -------------------------------------------------------------------------------- /app/model/system/dict_type/dict_type_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dict_type/dict_type_entity.go -------------------------------------------------------------------------------- /app/model/system/dict_type/dict_type_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/dict_type/dict_type_model.go -------------------------------------------------------------------------------- /app/model/system/menu/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/menu/menu.go -------------------------------------------------------------------------------- /app/model/system/menu/menu_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/menu/menu_entity.go -------------------------------------------------------------------------------- /app/model/system/menu/menu_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/menu/menu_model.go -------------------------------------------------------------------------------- /app/model/system/post/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/post/post.go -------------------------------------------------------------------------------- /app/model/system/post/post_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/post/post_entity.go -------------------------------------------------------------------------------- /app/model/system/post/post_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/post/post_model.go -------------------------------------------------------------------------------- /app/model/system/role/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/role/role.go -------------------------------------------------------------------------------- /app/model/system/role/role_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/role/role_entity.go -------------------------------------------------------------------------------- /app/model/system/role/role_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/role/role_model.go -------------------------------------------------------------------------------- /app/model/system/role_dept/role_dept.go: -------------------------------------------------------------------------------- 1 | package role_dept 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/system/role_dept/role_dept_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/role_dept/role_dept_entity.go -------------------------------------------------------------------------------- /app/model/system/role_dept/role_dept_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/role_dept/role_dept_model.go -------------------------------------------------------------------------------- /app/model/system/role_menu/role_menu.go: -------------------------------------------------------------------------------- 1 | package role_menu 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/system/role_menu/role_menu_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/role_menu/role_menu_entity.go -------------------------------------------------------------------------------- /app/model/system/role_menu/role_menu_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/role_menu/role_menu_model.go -------------------------------------------------------------------------------- /app/model/system/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user/user.go -------------------------------------------------------------------------------- /app/model/system/user/user_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user/user_entity.go -------------------------------------------------------------------------------- /app/model/system/user/user_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user/user_model.go -------------------------------------------------------------------------------- /app/model/system/user_online/user_online.go: -------------------------------------------------------------------------------- 1 | package user_online 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/system/user_online/user_online_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user_online/user_online_entity.go -------------------------------------------------------------------------------- /app/model/system/user_online/user_online_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user_online/user_online_model.go -------------------------------------------------------------------------------- /app/model/system/user_post/user_post.go: -------------------------------------------------------------------------------- 1 | package user_post 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/system/user_post/user_post_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user_post/user_post_entity.go -------------------------------------------------------------------------------- /app/model/system/user_post/user_post_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user_post/user_post_model.go -------------------------------------------------------------------------------- /app/model/system/user_role/user_role.go: -------------------------------------------------------------------------------- 1 | package user_role 2 | 3 | // Fill with you ideas below. -------------------------------------------------------------------------------- /app/model/system/user_role/user_role_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user_role/user_role_entity.go -------------------------------------------------------------------------------- /app/model/system/user_role/user_role_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/system/user_role/user_role_model.go -------------------------------------------------------------------------------- /app/model/tool/table/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/tool/table/table.go -------------------------------------------------------------------------------- /app/model/tool/table/table_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/tool/table/table_entity.go -------------------------------------------------------------------------------- /app/model/tool/table/table_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/tool/table/table_model.go -------------------------------------------------------------------------------- /app/model/tool/table_column/table_column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/tool/table_column/table_column.go -------------------------------------------------------------------------------- /app/model/tool/table_column/table_column_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/tool/table_column/table_column_entity.go -------------------------------------------------------------------------------- /app/model/tool/table_column/table_column_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/model/tool/table_column/table_column_model.go -------------------------------------------------------------------------------- /app/service/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/service/middleware/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/middleware/auth/auth.go -------------------------------------------------------------------------------- /app/service/middleware/cors/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/middleware/cors/cors.go -------------------------------------------------------------------------------- /app/service/middleware/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/middleware/jwt/jwt.go -------------------------------------------------------------------------------- /app/service/middleware/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/middleware/router/router.go -------------------------------------------------------------------------------- /app/service/monitor/job/job_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/monitor/job/job_service.go -------------------------------------------------------------------------------- /app/service/monitor/job_log/job_log_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/monitor/job_log/job_log_service.go -------------------------------------------------------------------------------- /app/service/monitor/logininfor/logininfor_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/monitor/logininfor/logininfor_service.go -------------------------------------------------------------------------------- /app/service/monitor/online/online_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/monitor/online/online_service.go -------------------------------------------------------------------------------- /app/service/monitor/operlog/operlog_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/monitor/operlog/operlog_service.go -------------------------------------------------------------------------------- /app/service/system/config/config_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/config/config_service.go -------------------------------------------------------------------------------- /app/service/system/dept/dept_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/dept/dept_service.go -------------------------------------------------------------------------------- /app/service/system/dict/dict_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/dict/dict_service.go -------------------------------------------------------------------------------- /app/service/system/dict_data/dict_data_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/dict_data/dict_data_service.go -------------------------------------------------------------------------------- /app/service/system/dict_type/dict_type_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/dict_type/dict_type_service.go -------------------------------------------------------------------------------- /app/service/system/menu/menu_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/menu/menu_service.go -------------------------------------------------------------------------------- /app/service/system/permission/permission_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/permission/permission_service.go -------------------------------------------------------------------------------- /app/service/system/post/post_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/post/post_service.go -------------------------------------------------------------------------------- /app/service/system/role/role_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/role/role_service.go -------------------------------------------------------------------------------- /app/service/system/user/user_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/system/user/user_service.go -------------------------------------------------------------------------------- /app/service/tool/table/table_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/tool/table/table_service.go -------------------------------------------------------------------------------- /app/service/tool/table_column/table_column_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/service/tool/table_column/table_column_service.go -------------------------------------------------------------------------------- /app/task/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/task/config.go -------------------------------------------------------------------------------- /app/task/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/task/test.go -------------------------------------------------------------------------------- /app/utils/convert/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/convert/convert.go -------------------------------------------------------------------------------- /app/utils/excel/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/excel/excel.go -------------------------------------------------------------------------------- /app/utils/ip/iptocity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/ip/iptocity.go -------------------------------------------------------------------------------- /app/utils/ip/iptocity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/ip/iptocity_test.go -------------------------------------------------------------------------------- /app/utils/ip/localip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/ip/localip.go -------------------------------------------------------------------------------- /app/utils/page/paging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/page/paging.go -------------------------------------------------------------------------------- /app/utils/page/table_data_info.go: -------------------------------------------------------------------------------- 1 | package page 2 | -------------------------------------------------------------------------------- /app/utils/random/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/random/random.go -------------------------------------------------------------------------------- /app/utils/response/api_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/response/api_response.go -------------------------------------------------------------------------------- /app/utils/response/table_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/response/table_response.go -------------------------------------------------------------------------------- /app/utils/response/tpl_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/response/tpl_response.go -------------------------------------------------------------------------------- /app/utils/time/time_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/time/time_utils.go -------------------------------------------------------------------------------- /app/utils/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/app/utils/token/token.go -------------------------------------------------------------------------------- /boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot/boot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/boot/boot.go -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/config/config.toml -------------------------------------------------------------------------------- /docker/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document/sql/yjgo_2020-03-29.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/document/sql/yjgo_2020-03-29.sql -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/go.mod -------------------------------------------------------------------------------- /i18n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/main.go -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/html/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/plugin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/resource/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/.DS_Store -------------------------------------------------------------------------------- /public/resource/ajax/libs/beautifyhtml/beautifyhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/beautifyhtml/beautifyhtml.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/blockUI/jquery.blockUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/blockUI/jquery.blockUI.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-fileinput/fileinput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-fileinput/fileinput.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-fileinput/fileinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-fileinput/fileinput.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-fileinput/fileinput.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-fileinput/fileinput.min.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-fileinput/fileinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-fileinput/fileinput.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-fileinput/loading-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-fileinput/loading-sm.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-fileinput/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-fileinput/loading.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-select/bootstrap-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-select/bootstrap-select.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-select/bootstrap-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-select/bootstrap-select.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-select/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-select/bootstrap-select.min.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-select/bootstrap-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-select/bootstrap-select.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/bootstrap-table.min.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/bootstrap-table.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/columns/bootstrap-table-fixed-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/columns/bootstrap-table-fixed-columns.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-table-editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/editable/bootstrap-table-editable.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/editable/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/editable/clear.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/editable/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/editable/loading.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/export/bootstrap-table-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/export/bootstrap-table-export.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/export/tableExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/export/tableExport.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/reorder/bootstrap-table-reorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/reorder/bootstrap-table-reorder.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/reorder/jquery.tablednd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/reorder/jquery.tablednd.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/locale/bootstrap-table-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/locale/bootstrap-table-zh-CN.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-table/locale/bootstrap-table-zh-CN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-table/locale/bootstrap-table-zh-CN.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/bootstrap-treetable/bootstrap-treetable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/bootstrap-treetable/bootstrap-treetable.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/cropbox/cropbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/cropbox/cropbox.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/cropbox/cropbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/cropbox/cropbox.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/datapicker/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/datapicker/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/datapicker/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/datapicker/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/datapicker/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/datapicker/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/datapicker/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/datapicker/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/duallistbox/bootstrap-duallistbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/duallistbox/bootstrap-duallistbox.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/duallistbox/bootstrap-duallistbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/duallistbox/bootstrap-duallistbox.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/duallistbox/bootstrap-duallistbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/duallistbox/bootstrap-duallistbox.min.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/duallistbox/bootstrap-duallistbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/duallistbox/bootstrap-duallistbox.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/flot/curvedLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/flot/curvedLines.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/flot/jquery.flot.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/flot/jquery.flot.spline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/flot/jquery.flot.spline.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/flot/jquery.flot.symbol.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/flot/jquery.flot.tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/flot/jquery.flot.tooltip.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/fullscreen/jquery.fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/fullscreen/jquery.fullscreen.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/iCheck/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/iCheck/custom.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/iCheck/green-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/iCheck/green-login.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/iCheck/green.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/iCheck/green@2x.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/iCheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/iCheck/icheck.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jasny/jasny-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jasny/jasny-bootstrap.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/jasny/jasny-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jasny/jasny-bootstrap.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jasny/jasny-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jasny/jasny-bootstrap.min.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/jasny/jasny-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jasny/jasny-bootstrap.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-layout/jquery.layout-latest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-layout/jquery.layout-latest.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-layout/jquery.layout-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-layout/jquery.layout-latest.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/1_close.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/1_open.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/2.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/3.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/4.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/5.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/6.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/7.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/8.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/diy/9.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/line_conn.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/loading.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/zTreeStandard.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/img/zTreeStandard.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/default/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/default/zTreeStyle.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/line_conn.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/line_conn.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/loading.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/metro.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/metro/img/metro.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/left_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/left_menu.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/left_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/left_menu.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/line_conn.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/loading.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/zTreeStandard.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/simple/img/zTreeStandard.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/css/simple/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/css/simple/zTreeStyle.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.all-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.all-3.5.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.core-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.core-3.5.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.excheck-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.excheck-3.5.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.exedit-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.exedit-3.5.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.exhide-3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.exhide-3.5.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/jquery-ztree/3.5/log v3.x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jquery-ztree/3.5/log v3.x.txt -------------------------------------------------------------------------------- /public/resource/ajax/libs/jsonview/jquery.jsonview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jsonview/jquery.jsonview.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/jsonview/jquery.jsonview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/jsonview/jquery.jsonview.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/layer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/layer.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/theme/default/icon.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/theme/default/layer.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/theme/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/theme/moon/default.png -------------------------------------------------------------------------------- /public/resource/ajax/libs/layer/theme/moon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layer/theme/moon/style.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/layui/css/modules/laydate/default/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layui/css/modules/laydate/default/font/iconfont.eot -------------------------------------------------------------------------------- /public/resource/ajax/libs/layui/css/modules/laydate/default/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layui/css/modules/laydate/default/font/iconfont.svg -------------------------------------------------------------------------------- /public/resource/ajax/libs/layui/css/modules/laydate/default/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layui/css/modules/laydate/default/font/iconfont.ttf -------------------------------------------------------------------------------- /public/resource/ajax/libs/layui/css/modules/laydate/default/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layui/css/modules/laydate/default/font/iconfont.woff -------------------------------------------------------------------------------- /public/resource/ajax/libs/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/layui/layui.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/report/echarts/echarts-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/report/echarts/echarts-all.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/report/peity/jquery.peity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/report/peity/jquery.peity.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/report/sparkline/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/report/sparkline/jquery.sparkline.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/select2/select2-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/select2/select2-bootstrap.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/select2/select2.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/select2/select2.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/select2/select2.min.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/select2/select2.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/staps/jquery.steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/staps/jquery.steps.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/staps/jquery.steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/staps/jquery.steps.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/staps/jquery.steps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/staps/jquery.steps.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/suggest/bootstrap-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/suggest/bootstrap-suggest.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/suggest/bootstrap-suggest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/suggest/bootstrap-suggest.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/summernote/font/summernote.eot -------------------------------------------------------------------------------- /public/resource/ajax/libs/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /public/resource/ajax/libs/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/summernote/font/summernote.woff -------------------------------------------------------------------------------- /public/resource/ajax/libs/summernote/summernote-bs3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/summernote/summernote-bs3.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/summernote/summernote-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/summernote/summernote-zh-CN.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/summernote/summernote.css -------------------------------------------------------------------------------- /public/resource/ajax/libs/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/summernote/summernote.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/summernote/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/summernote/summernote.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/typeahead/bootstrap3-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/typeahead/bootstrap3-typeahead.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/typeahead/bootstrap3-typeahead.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/typeahead/bootstrap3-typeahead.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/validate/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/validate/additional-methods.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/validate/jquery.validate.extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/validate/jquery.validate.extend.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/validate/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/validate/jquery.validate.min.js -------------------------------------------------------------------------------- /public/resource/ajax/libs/validate/messages_zh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/ajax/libs/validate/messages_zh.min.js -------------------------------------------------------------------------------- /public/resource/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/resource/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/animate.css -------------------------------------------------------------------------------- /public/resource/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/resource/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/font-awesome.css -------------------------------------------------------------------------------- /public/resource/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/font-awesome.min.css -------------------------------------------------------------------------------- /public/resource/css/jquery.contextMenu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/jquery.contextMenu.min.css -------------------------------------------------------------------------------- /public/resource/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/login.css -------------------------------------------------------------------------------- /public/resource/css/login.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/login.min.css -------------------------------------------------------------------------------- /public/resource/css/main/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/main/animate.min.css -------------------------------------------------------------------------------- /public/resource/css/main/bootstrap.min14ed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/main/bootstrap.min14ed.css -------------------------------------------------------------------------------- /public/resource/css/main/font-awesome.min93e3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/main/font-awesome.min93e3.css -------------------------------------------------------------------------------- /public/resource/css/main/style.min862f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/main/style.min862f.css -------------------------------------------------------------------------------- /public/resource/css/patterns/header-profile-skin-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/patterns/header-profile-skin-blue.png -------------------------------------------------------------------------------- /public/resource/css/patterns/header-profile-skin-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/patterns/header-profile-skin-yellow.png -------------------------------------------------------------------------------- /public/resource/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/patterns/header-profile.png -------------------------------------------------------------------------------- /public/resource/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/patterns/shattered.png -------------------------------------------------------------------------------- /public/resource/css/skins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/skins.css -------------------------------------------------------------------------------- /public/resource/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/css/style.css -------------------------------------------------------------------------------- /public/resource/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/favicon.ico -------------------------------------------------------------------------------- /public/resource/file/rml.txt: -------------------------------------------------------------------------------- 1 | 下载临时目录 -------------------------------------------------------------------------------- /public/resource/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/resource/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /public/resource/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/resource/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/resource/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/resource/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/resource/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/resource/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/resource/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/resource/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/resource/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/resource/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/resource/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/i18n/messages.properties -------------------------------------------------------------------------------- /public/resource/image/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/resource/img/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/img/blue.png -------------------------------------------------------------------------------- /public/resource/img/loading-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/img/loading-upload.gif -------------------------------------------------------------------------------- /public/resource/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/img/loading.gif -------------------------------------------------------------------------------- /public/resource/img/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/img/locked.png -------------------------------------------------------------------------------- /public/resource/img/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/img/login-background.jpg -------------------------------------------------------------------------------- /public/resource/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/img/profile.jpg -------------------------------------------------------------------------------- /public/resource/img/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/img/progress.png -------------------------------------------------------------------------------- /public/resource/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/img/user.png -------------------------------------------------------------------------------- /public/resource/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/resource/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/resource/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /public/resource/js/jquery.contextMenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/js/jquery.contextMenu.min.js -------------------------------------------------------------------------------- /public/resource/js/jquery.i18n.properties.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/js/jquery.i18n.properties.min.js -------------------------------------------------------------------------------- /public/resource/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/js/jquery.min.js -------------------------------------------------------------------------------- /public/resource/js/jquery.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/js/jquery.tmpl.js -------------------------------------------------------------------------------- /public/resource/js/plugins/metisMenu/jquery.metisMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/js/plugins/metisMenu/jquery.metisMenu.js -------------------------------------------------------------------------------- /public/resource/js/plugins/slimscroll/jquery.slimscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/js/plugins/slimscroll/jquery.slimscroll.min.js -------------------------------------------------------------------------------- /public/resource/yunfan/css/yf-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/yunfan/css/yf-ui.css -------------------------------------------------------------------------------- /public/resource/yunfan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/yunfan/index.js -------------------------------------------------------------------------------- /public/resource/yunfan/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/yunfan/js/common.js -------------------------------------------------------------------------------- /public/resource/yunfan/js/yf-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/yunfan/js/yf-ui.js -------------------------------------------------------------------------------- /public/resource/yunfan/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/resource/yunfan/login.js -------------------------------------------------------------------------------- /public/swagger/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/favicon-16x16.png -------------------------------------------------------------------------------- /public/swagger/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/favicon-32x32.png -------------------------------------------------------------------------------- /public/swagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/index.html -------------------------------------------------------------------------------- /public/swagger/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/oauth2-redirect.html -------------------------------------------------------------------------------- /public/swagger/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger-ui-bundle.js -------------------------------------------------------------------------------- /public/swagger/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /public/swagger/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /public/swagger/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /public/swagger/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger-ui.css -------------------------------------------------------------------------------- /public/swagger/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger-ui.css.map -------------------------------------------------------------------------------- /public/swagger/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger-ui.js -------------------------------------------------------------------------------- /public/swagger/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger-ui.js.map -------------------------------------------------------------------------------- /public/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/swagger/swagger.json -------------------------------------------------------------------------------- /public/upload/1579691254993208000.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/upload/1579691254993208000.xls -------------------------------------------------------------------------------- /public/upload/admin1579180516186761000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/upload/admin1579180516186761000.png -------------------------------------------------------------------------------- /public/upload/b5bba686b08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/upload/b5bba686b08.png -------------------------------------------------------------------------------- /public/upload/b5bba7599aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/public/upload/b5bba7599aa.png -------------------------------------------------------------------------------- /router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/router/router.go -------------------------------------------------------------------------------- /template/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/.DS_Store -------------------------------------------------------------------------------- /template/demo/form/autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/autocomplete.html -------------------------------------------------------------------------------- /template/demo/form/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/basic.html -------------------------------------------------------------------------------- /template/demo/form/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/button.html -------------------------------------------------------------------------------- /template/demo/form/cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/cards.html -------------------------------------------------------------------------------- /template/demo/form/datetime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/datetime.html -------------------------------------------------------------------------------- /template/demo/form/duallistbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/duallistbox.html -------------------------------------------------------------------------------- /template/demo/form/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/grid.html -------------------------------------------------------------------------------- /template/demo/form/jasny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/jasny.html -------------------------------------------------------------------------------- /template/demo/form/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/select.html -------------------------------------------------------------------------------- /template/demo/form/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/sortable.html -------------------------------------------------------------------------------- /template/demo/form/summernote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/summernote.html -------------------------------------------------------------------------------- /template/demo/form/tabs_panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/tabs_panels.html -------------------------------------------------------------------------------- /template/demo/form/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/timeline.html -------------------------------------------------------------------------------- /template/demo/form/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/upload.html -------------------------------------------------------------------------------- /template/demo/form/validate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/validate.html -------------------------------------------------------------------------------- /template/demo/form/wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/form/wizard.html -------------------------------------------------------------------------------- /template/demo/icon/fontawesome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/icon/fontawesome.html -------------------------------------------------------------------------------- /template/demo/icon/glyphicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/icon/glyphicons.html -------------------------------------------------------------------------------- /template/demo/modal/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/modal/dialog.html -------------------------------------------------------------------------------- /template/demo/modal/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/modal/form.html -------------------------------------------------------------------------------- /template/demo/modal/layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/modal/layer.html -------------------------------------------------------------------------------- /template/demo/modal/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/modal/table.html -------------------------------------------------------------------------------- /template/demo/modal/table/check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/modal/table/check.html -------------------------------------------------------------------------------- /template/demo/modal/table/parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/modal/table/parent.html -------------------------------------------------------------------------------- /template/demo/modal/table/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/modal/table/radio.html -------------------------------------------------------------------------------- /template/demo/operate/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/operate/add.html -------------------------------------------------------------------------------- /template/demo/operate/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/operate/detail.html -------------------------------------------------------------------------------- /template/demo/operate/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/operate/edit.html -------------------------------------------------------------------------------- /template/demo/operate/other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/operate/other.html -------------------------------------------------------------------------------- /template/demo/operate/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/operate/table.html -------------------------------------------------------------------------------- /template/demo/report/echarts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/report/echarts.html -------------------------------------------------------------------------------- /template/demo/report/metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/report/metrics.html -------------------------------------------------------------------------------- /template/demo/report/peity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/report/peity.html -------------------------------------------------------------------------------- /template/demo/report/sparkline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/report/sparkline.html -------------------------------------------------------------------------------- /template/demo/table/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/button.html -------------------------------------------------------------------------------- /template/demo/table/child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/child.html -------------------------------------------------------------------------------- /template/demo/table/curd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/curd.html -------------------------------------------------------------------------------- /template/demo/table/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/detail.html -------------------------------------------------------------------------------- /template/demo/table/editable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/editable.html -------------------------------------------------------------------------------- /template/demo/table/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/event.html -------------------------------------------------------------------------------- /template/demo/table/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/export.html -------------------------------------------------------------------------------- /template/demo/table/fixedColumns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/fixedColumns.html -------------------------------------------------------------------------------- /template/demo/table/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/footer.html -------------------------------------------------------------------------------- /template/demo/table/groupHeader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/groupHeader.html -------------------------------------------------------------------------------- /template/demo/table/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/image.html -------------------------------------------------------------------------------- /template/demo/table/multi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/multi.html -------------------------------------------------------------------------------- /template/demo/table/other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/other.html -------------------------------------------------------------------------------- /template/demo/table/pageGo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/pageGo.html -------------------------------------------------------------------------------- /template/demo/table/params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/params.html -------------------------------------------------------------------------------- /template/demo/table/recorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/recorder.html -------------------------------------------------------------------------------- /template/demo/table/remember.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/remember.html -------------------------------------------------------------------------------- /template/demo/table/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/demo/table/search.html -------------------------------------------------------------------------------- /template/error/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/error/404.html -------------------------------------------------------------------------------- /template/error/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/error/500.html -------------------------------------------------------------------------------- /template/error/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/error/error.html -------------------------------------------------------------------------------- /template/error/unauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/error/unauth.html -------------------------------------------------------------------------------- /template/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/footer.html -------------------------------------------------------------------------------- /template/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/header.html -------------------------------------------------------------------------------- /template/include.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/include/bootstrap-duallistbox-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-duallistbox-css.html -------------------------------------------------------------------------------- /template/include/bootstrap-duallistbox-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-duallistbox-js.html -------------------------------------------------------------------------------- /template/include/bootstrap-editable-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-editable-css.html -------------------------------------------------------------------------------- /template/include/bootstrap-fileinput-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-fileinput-css.html -------------------------------------------------------------------------------- /template/include/bootstrap-fileinput-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-fileinput-js.html -------------------------------------------------------------------------------- /template/include/bootstrap-select-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-select-css.html -------------------------------------------------------------------------------- /template/include/bootstrap-select-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-select-js.html -------------------------------------------------------------------------------- /template/include/bootstrap-suggest-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-suggest-js.html -------------------------------------------------------------------------------- /template/include/bootstrap-table-reorder-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-table-reorder-js.html -------------------------------------------------------------------------------- /template/include/bootstrap-typeahead-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/bootstrap-typeahead-js.html -------------------------------------------------------------------------------- /template/include/cropbox-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/cropbox-css.html -------------------------------------------------------------------------------- /template/include/cropbox-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/cropbox-js.html -------------------------------------------------------------------------------- /template/include/datetimepicker-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/datetimepicker-css.html -------------------------------------------------------------------------------- /template/include/datetimepicker-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/datetimepicker-js.html -------------------------------------------------------------------------------- /template/include/echarts-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/echarts-js.html -------------------------------------------------------------------------------- /template/include/jasny-bootstrap-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/jasny-bootstrap-css.html -------------------------------------------------------------------------------- /template/include/jasny-bootstrap-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/jasny-bootstrap-js.html -------------------------------------------------------------------------------- /template/include/jquery-steps-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/jquery-steps-css.html -------------------------------------------------------------------------------- /template/include/jquery-steps-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/jquery-steps-js.html -------------------------------------------------------------------------------- /template/include/jsonview-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/jsonview-css.html -------------------------------------------------------------------------------- /template/include/jsonview-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/jsonview-js.html -------------------------------------------------------------------------------- /template/include/layout-latest-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/layout-latest-css.html -------------------------------------------------------------------------------- /template/include/layout-latest-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/layout-latest-js.html -------------------------------------------------------------------------------- /template/include/peity-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/peity-js.html -------------------------------------------------------------------------------- /template/include/select2-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/select2-css.html -------------------------------------------------------------------------------- /template/include/select2-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/select2-js.html -------------------------------------------------------------------------------- /template/include/sparkline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/sparkline-js.html -------------------------------------------------------------------------------- /template/include/summernote-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/summernote-css.html -------------------------------------------------------------------------------- /template/include/summernote-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/summernote-js.html -------------------------------------------------------------------------------- /template/include/ztree-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/ztree-css.html -------------------------------------------------------------------------------- /template/include/ztree-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/include/ztree-js.html -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/index.html -------------------------------------------------------------------------------- /template/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/login.html -------------------------------------------------------------------------------- /template/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/main.html -------------------------------------------------------------------------------- /template/main_v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/main_v2.html -------------------------------------------------------------------------------- /template/monitor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/.DS_Store -------------------------------------------------------------------------------- /template/monitor/job/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/job/.DS_Store -------------------------------------------------------------------------------- /template/monitor/job/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/job/add.html -------------------------------------------------------------------------------- /template/monitor/job/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/job/detail.html -------------------------------------------------------------------------------- /template/monitor/job/detailLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/job/detailLog.html -------------------------------------------------------------------------------- /template/monitor/job/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/job/edit.html -------------------------------------------------------------------------------- /template/monitor/job/jobLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/job/jobLog.html -------------------------------------------------------------------------------- /template/monitor/job/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/job/list.html -------------------------------------------------------------------------------- /template/monitor/logininfor/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/logininfor/list.html -------------------------------------------------------------------------------- /template/monitor/online/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/online/list.html -------------------------------------------------------------------------------- /template/monitor/operlog/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/operlog/detail.html -------------------------------------------------------------------------------- /template/monitor/operlog/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/operlog/list.html -------------------------------------------------------------------------------- /template/monitor/server/server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/monitor/server/server.html -------------------------------------------------------------------------------- /template/skin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/skin.html -------------------------------------------------------------------------------- /template/system/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/.DS_Store -------------------------------------------------------------------------------- /template/system/config/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/config/add.html -------------------------------------------------------------------------------- /template/system/config/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/config/edit.html -------------------------------------------------------------------------------- /template/system/config/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/config/list.html -------------------------------------------------------------------------------- /template/system/dept/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dept/add.html -------------------------------------------------------------------------------- /template/system/dept/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dept/edit.html -------------------------------------------------------------------------------- /template/system/dept/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dept/list.html -------------------------------------------------------------------------------- /template/system/dept/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dept/tree.html -------------------------------------------------------------------------------- /template/system/dict/data/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dict/data/add.html -------------------------------------------------------------------------------- /template/system/dict/data/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dict/data/edit.html -------------------------------------------------------------------------------- /template/system/dict/data/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dict/data/list.html -------------------------------------------------------------------------------- /template/system/dict/type/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dict/type/add.html -------------------------------------------------------------------------------- /template/system/dict/type/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dict/type/edit.html -------------------------------------------------------------------------------- /template/system/dict/type/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dict/type/list.html -------------------------------------------------------------------------------- /template/system/dict/type/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/dict/type/tree.html -------------------------------------------------------------------------------- /template/system/menu/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/menu/add.html -------------------------------------------------------------------------------- /template/system/menu/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/menu/edit.html -------------------------------------------------------------------------------- /template/system/menu/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/menu/icon.html -------------------------------------------------------------------------------- /template/system/menu/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/menu/list.html -------------------------------------------------------------------------------- /template/system/menu/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/menu/tree.html -------------------------------------------------------------------------------- /template/system/post/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/post/add.html -------------------------------------------------------------------------------- /template/system/post/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/post/edit.html -------------------------------------------------------------------------------- /template/system/post/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/post/list.html -------------------------------------------------------------------------------- /template/system/role/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/role/add.html -------------------------------------------------------------------------------- /template/system/role/authUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/role/authUser.html -------------------------------------------------------------------------------- /template/system/role/dataScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/role/dataScope.html -------------------------------------------------------------------------------- /template/system/role/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/role/edit.html -------------------------------------------------------------------------------- /template/system/role/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/role/list.html -------------------------------------------------------------------------------- /template/system/role/selectUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/role/selectUser.html -------------------------------------------------------------------------------- /template/system/user/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/user/add.html -------------------------------------------------------------------------------- /template/system/user/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/user/edit.html -------------------------------------------------------------------------------- /template/system/user/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/user/list.html -------------------------------------------------------------------------------- /template/system/user/profile/avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/user/profile/avatar.html -------------------------------------------------------------------------------- /template/system/user/profile/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/user/profile/profile.html -------------------------------------------------------------------------------- /template/system/user/profile/resetPwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/user/profile/resetPwd.html -------------------------------------------------------------------------------- /template/system/user/resetPwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/system/user/resetPwd.html -------------------------------------------------------------------------------- /template/tool/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/tool/build.html -------------------------------------------------------------------------------- /template/tool/gen/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/tool/gen/edit.html -------------------------------------------------------------------------------- /template/tool/gen/importTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/tool/gen/importTable.html -------------------------------------------------------------------------------- /template/tool/gen/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/tool/gen/list.html -------------------------------------------------------------------------------- /template/vm/go/controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/go/controller.html -------------------------------------------------------------------------------- /template/vm/go/entity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/go/entity.html -------------------------------------------------------------------------------- /template/vm/go/extend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/go/extend.html -------------------------------------------------------------------------------- /template/vm/go/model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/go/model.html -------------------------------------------------------------------------------- /template/vm/go/router.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/go/router.html -------------------------------------------------------------------------------- /template/vm/go/service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/go/service.html -------------------------------------------------------------------------------- /template/vm/html/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/html/add.html -------------------------------------------------------------------------------- /template/vm/html/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/html/edit.html -------------------------------------------------------------------------------- /template/vm/html/list-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/html/list-tree.html -------------------------------------------------------------------------------- /template/vm/html/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/html/list.html -------------------------------------------------------------------------------- /template/vm/html/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/html/tree.html -------------------------------------------------------------------------------- /template/vm/sql/sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guolingege/yjgo/HEAD/template/vm/sql/sql.html --------------------------------------------------------------------------------