├── .github └── workflows │ └── sync.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.en.md ├── README.md ├── api └── v1 │ ├── enter.go │ └── system │ ├── enter.go │ ├── sys_api.go │ ├── sys_auto_code.go │ ├── sys_captcha.go │ ├── sys_dept.go │ ├── sys_dictionary.go │ ├── sys_dictionary_detail.go │ ├── sys_init.go │ ├── sys_menu.go │ ├── sys_role.go │ ├── sys_system.go │ └── sys_user.go ├── config.yaml ├── config ├── auto_code.go ├── captcha.go ├── config.go ├── jwt.go ├── mysql.go ├── system.go └── zap.go ├── core ├── server.go ├── server_os.go ├── viper.go └── zap.go ├── dao ├── common │ ├── request │ │ └── common.go │ └── response │ │ ├── common.go │ │ └── response.go ├── request │ ├── jwt.go │ ├── sys_api.go │ ├── sys_auto_code.go │ ├── sys_casbin.go │ ├── sys_dept.go │ ├── sys_dictionary_detail.go │ ├── sys_init.go │ ├── sys_menu.go │ ├── sys_role.go │ └── sys_user.go └── response │ ├── sys_captcha.go │ ├── sys_menu.go │ ├── sys_role.go │ ├── sys_system.go │ └── sys_user.go ├── data └── system │ ├── data.go │ ├── sys_api.go │ ├── sys_casbin.go │ ├── sys_dept.go │ ├── sys_dictionary.go │ ├── sys_dictionary_detail.go │ ├── sys_menu.go │ ├── sys_role.go │ ├── sys_role_menus.go │ └── sys_user.go ├── docs ├── docs.go ├── swagger.json └── swagger.yaml ├── global ├── global.go └── model.go ├── go.mod ├── go.sum ├── initialize ├── gorm.go ├── init.go ├── mysql.go └── router.go ├── main.go ├── middleware ├── casbin.go └── jwt.go ├── model └── system │ ├── sys_api.go │ ├── sys_auto_code.go │ ├── sys_dept.go │ ├── sys_dictionary.go │ ├── sys_dictionary_detail.go │ ├── sys_menus.go │ ├── sys_role.go │ ├── sys_role_menus.go │ ├── sys_system.go │ ├── sys_user.go │ └── sys_user_role.go ├── router ├── enter.go └── system │ ├── enter.go │ ├── sys_api.go │ ├── sys_auto_code.go │ ├── sys_base.go │ ├── sys_dept.go │ ├── sys_dictionary.go │ ├── sys_dictionary_detail.go │ ├── sys_init.go │ ├── sys_menu.go │ ├── sys_role.go │ ├── sys_system.go │ └── sys_user.go ├── service ├── enter.go └── system │ ├── enter.go │ ├── sys_api.go │ ├── sys_auto_code.go │ ├── sys_casbin.go │ ├── sys_dept.go │ ├── sys_dictionary.go │ ├── sys_dictionary_detail.go │ ├── sys_init.go │ ├── sys_menu.go │ ├── sys_mysql_init.go │ ├── sys_role.go │ ├── sys_system.go │ └── sys_user.go ├── template ├── auto_template │ ├── api_enter.go.tpl │ ├── router_enter.go.tpl │ ├── server │ │ ├── api.go.tpl │ │ ├── model.go.tpl │ │ ├── request.go.tpl │ │ ├── router.go.tpl │ │ └── service.go.tpl │ ├── service_enter.go.tpl │ ├── sub_cache.go │ └── web │ │ ├── api.js.tpl │ │ ├── form.vue.tpl │ │ └── table.vue.tpl └── page │ ├── css │ ├── app.7832f89c.css │ └── chunk-vendors.a16c4353.css │ ├── fonts │ ├── element-icons.535877f5.woff │ └── element-icons.732389de.ttf │ ├── index.html │ ├── js │ ├── app.9fe02340.js │ └── chunk-vendors.2e7c88f1.js │ └── report.html ├── utils ├── ast │ ├── ast.go │ ├── ast_auto_enter.go │ ├── ast_enter.go │ ├── ast_gorm.go │ └── ast_router.go ├── claims.go ├── constant.go ├── hash.go ├── jwt.go ├── md5.go ├── rotatelog.go ├── system.go ├── tool_plus.go ├── tools.go ├── validator.go └── zip_tool.go └── verify ├── common └── common.go └── system ├── sys_api.go ├── sys_auto_code.go ├── sys_dept.go ├── sys_menu.go ├── sys_role.go └── sys_user.go /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/README.md -------------------------------------------------------------------------------- /api/v1/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/enter.go -------------------------------------------------------------------------------- /api/v1/system/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/enter.go -------------------------------------------------------------------------------- /api/v1/system/sys_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_api.go -------------------------------------------------------------------------------- /api/v1/system/sys_auto_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_auto_code.go -------------------------------------------------------------------------------- /api/v1/system/sys_captcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_captcha.go -------------------------------------------------------------------------------- /api/v1/system/sys_dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_dept.go -------------------------------------------------------------------------------- /api/v1/system/sys_dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_dictionary.go -------------------------------------------------------------------------------- /api/v1/system/sys_dictionary_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_dictionary_detail.go -------------------------------------------------------------------------------- /api/v1/system/sys_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_init.go -------------------------------------------------------------------------------- /api/v1/system/sys_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_menu.go -------------------------------------------------------------------------------- /api/v1/system/sys_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_role.go -------------------------------------------------------------------------------- /api/v1/system/sys_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_system.go -------------------------------------------------------------------------------- /api/v1/system/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/api/v1/system/sys_user.go -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/config.yaml -------------------------------------------------------------------------------- /config/auto_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/config/auto_code.go -------------------------------------------------------------------------------- /config/captcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/config/captcha.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/config/config.go -------------------------------------------------------------------------------- /config/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/config/jwt.go -------------------------------------------------------------------------------- /config/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/config/mysql.go -------------------------------------------------------------------------------- /config/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/config/system.go -------------------------------------------------------------------------------- /config/zap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/config/zap.go -------------------------------------------------------------------------------- /core/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/core/server.go -------------------------------------------------------------------------------- /core/server_os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/core/server_os.go -------------------------------------------------------------------------------- /core/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/core/viper.go -------------------------------------------------------------------------------- /core/zap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/core/zap.go -------------------------------------------------------------------------------- /dao/common/request/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/common/request/common.go -------------------------------------------------------------------------------- /dao/common/response/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/common/response/common.go -------------------------------------------------------------------------------- /dao/common/response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/common/response/response.go -------------------------------------------------------------------------------- /dao/request/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/jwt.go -------------------------------------------------------------------------------- /dao/request/sys_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_api.go -------------------------------------------------------------------------------- /dao/request/sys_auto_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_auto_code.go -------------------------------------------------------------------------------- /dao/request/sys_casbin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_casbin.go -------------------------------------------------------------------------------- /dao/request/sys_dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_dept.go -------------------------------------------------------------------------------- /dao/request/sys_dictionary_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_dictionary_detail.go -------------------------------------------------------------------------------- /dao/request/sys_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_init.go -------------------------------------------------------------------------------- /dao/request/sys_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_menu.go -------------------------------------------------------------------------------- /dao/request/sys_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_role.go -------------------------------------------------------------------------------- /dao/request/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/request/sys_user.go -------------------------------------------------------------------------------- /dao/response/sys_captcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/response/sys_captcha.go -------------------------------------------------------------------------------- /dao/response/sys_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/response/sys_menu.go -------------------------------------------------------------------------------- /dao/response/sys_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/response/sys_role.go -------------------------------------------------------------------------------- /dao/response/sys_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/response/sys_system.go -------------------------------------------------------------------------------- /dao/response/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/dao/response/sys_user.go -------------------------------------------------------------------------------- /data/system/data.go: -------------------------------------------------------------------------------- 1 | package system 2 | 3 | const InitOrder = 10 4 | -------------------------------------------------------------------------------- /data/system/sys_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_api.go -------------------------------------------------------------------------------- /data/system/sys_casbin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_casbin.go -------------------------------------------------------------------------------- /data/system/sys_dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_dept.go -------------------------------------------------------------------------------- /data/system/sys_dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_dictionary.go -------------------------------------------------------------------------------- /data/system/sys_dictionary_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_dictionary_detail.go -------------------------------------------------------------------------------- /data/system/sys_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_menu.go -------------------------------------------------------------------------------- /data/system/sys_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_role.go -------------------------------------------------------------------------------- /data/system/sys_role_menus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_role_menus.go -------------------------------------------------------------------------------- /data/system/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/data/system/sys_user.go -------------------------------------------------------------------------------- /docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/docs/docs.go -------------------------------------------------------------------------------- /docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/docs/swagger.json -------------------------------------------------------------------------------- /docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/docs/swagger.yaml -------------------------------------------------------------------------------- /global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/global/global.go -------------------------------------------------------------------------------- /global/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/global/model.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/go.sum -------------------------------------------------------------------------------- /initialize/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/initialize/gorm.go -------------------------------------------------------------------------------- /initialize/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/initialize/init.go -------------------------------------------------------------------------------- /initialize/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/initialize/mysql.go -------------------------------------------------------------------------------- /initialize/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/initialize/router.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/main.go -------------------------------------------------------------------------------- /middleware/casbin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/middleware/casbin.go -------------------------------------------------------------------------------- /middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/middleware/jwt.go -------------------------------------------------------------------------------- /model/system/sys_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_api.go -------------------------------------------------------------------------------- /model/system/sys_auto_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_auto_code.go -------------------------------------------------------------------------------- /model/system/sys_dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_dept.go -------------------------------------------------------------------------------- /model/system/sys_dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_dictionary.go -------------------------------------------------------------------------------- /model/system/sys_dictionary_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_dictionary_detail.go -------------------------------------------------------------------------------- /model/system/sys_menus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_menus.go -------------------------------------------------------------------------------- /model/system/sys_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_role.go -------------------------------------------------------------------------------- /model/system/sys_role_menus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_role_menus.go -------------------------------------------------------------------------------- /model/system/sys_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_system.go -------------------------------------------------------------------------------- /model/system/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_user.go -------------------------------------------------------------------------------- /model/system/sys_user_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/model/system/sys_user_role.go -------------------------------------------------------------------------------- /router/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/enter.go -------------------------------------------------------------------------------- /router/system/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/enter.go -------------------------------------------------------------------------------- /router/system/sys_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_api.go -------------------------------------------------------------------------------- /router/system/sys_auto_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_auto_code.go -------------------------------------------------------------------------------- /router/system/sys_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_base.go -------------------------------------------------------------------------------- /router/system/sys_dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_dept.go -------------------------------------------------------------------------------- /router/system/sys_dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_dictionary.go -------------------------------------------------------------------------------- /router/system/sys_dictionary_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_dictionary_detail.go -------------------------------------------------------------------------------- /router/system/sys_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_init.go -------------------------------------------------------------------------------- /router/system/sys_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_menu.go -------------------------------------------------------------------------------- /router/system/sys_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_role.go -------------------------------------------------------------------------------- /router/system/sys_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_system.go -------------------------------------------------------------------------------- /router/system/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/router/system/sys_user.go -------------------------------------------------------------------------------- /service/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/enter.go -------------------------------------------------------------------------------- /service/system/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/enter.go -------------------------------------------------------------------------------- /service/system/sys_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_api.go -------------------------------------------------------------------------------- /service/system/sys_auto_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_auto_code.go -------------------------------------------------------------------------------- /service/system/sys_casbin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_casbin.go -------------------------------------------------------------------------------- /service/system/sys_dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_dept.go -------------------------------------------------------------------------------- /service/system/sys_dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_dictionary.go -------------------------------------------------------------------------------- /service/system/sys_dictionary_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_dictionary_detail.go -------------------------------------------------------------------------------- /service/system/sys_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_init.go -------------------------------------------------------------------------------- /service/system/sys_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_menu.go -------------------------------------------------------------------------------- /service/system/sys_mysql_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_mysql_init.go -------------------------------------------------------------------------------- /service/system/sys_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_role.go -------------------------------------------------------------------------------- /service/system/sys_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_system.go -------------------------------------------------------------------------------- /service/system/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/service/system/sys_user.go -------------------------------------------------------------------------------- /template/auto_template/api_enter.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/api_enter.go.tpl -------------------------------------------------------------------------------- /template/auto_template/router_enter.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/router_enter.go.tpl -------------------------------------------------------------------------------- /template/auto_template/server/api.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/server/api.go.tpl -------------------------------------------------------------------------------- /template/auto_template/server/model.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/server/model.go.tpl -------------------------------------------------------------------------------- /template/auto_template/server/request.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/server/request.go.tpl -------------------------------------------------------------------------------- /template/auto_template/server/router.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/server/router.go.tpl -------------------------------------------------------------------------------- /template/auto_template/server/service.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/server/service.go.tpl -------------------------------------------------------------------------------- /template/auto_template/service_enter.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/service_enter.go.tpl -------------------------------------------------------------------------------- /template/auto_template/sub_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/sub_cache.go -------------------------------------------------------------------------------- /template/auto_template/web/api.js.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/web/api.js.tpl -------------------------------------------------------------------------------- /template/auto_template/web/form.vue.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/web/form.vue.tpl -------------------------------------------------------------------------------- /template/auto_template/web/table.vue.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/auto_template/web/table.vue.tpl -------------------------------------------------------------------------------- /template/page/css/app.7832f89c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/page/css/app.7832f89c.css -------------------------------------------------------------------------------- /template/page/css/chunk-vendors.a16c4353.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/page/css/chunk-vendors.a16c4353.css -------------------------------------------------------------------------------- /template/page/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/page/fonts/element-icons.535877f5.woff -------------------------------------------------------------------------------- /template/page/fonts/element-icons.732389de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/page/fonts/element-icons.732389de.ttf -------------------------------------------------------------------------------- /template/page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/page/index.html -------------------------------------------------------------------------------- /template/page/js/app.9fe02340.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/page/js/app.9fe02340.js -------------------------------------------------------------------------------- /template/page/js/chunk-vendors.2e7c88f1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/page/js/chunk-vendors.2e7c88f1.js -------------------------------------------------------------------------------- /template/page/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/template/page/report.html -------------------------------------------------------------------------------- /utils/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/ast/ast.go -------------------------------------------------------------------------------- /utils/ast/ast_auto_enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/ast/ast_auto_enter.go -------------------------------------------------------------------------------- /utils/ast/ast_enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/ast/ast_enter.go -------------------------------------------------------------------------------- /utils/ast/ast_gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/ast/ast_gorm.go -------------------------------------------------------------------------------- /utils/ast/ast_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/ast/ast_router.go -------------------------------------------------------------------------------- /utils/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/claims.go -------------------------------------------------------------------------------- /utils/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/constant.go -------------------------------------------------------------------------------- /utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/hash.go -------------------------------------------------------------------------------- /utils/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/jwt.go -------------------------------------------------------------------------------- /utils/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/md5.go -------------------------------------------------------------------------------- /utils/rotatelog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/rotatelog.go -------------------------------------------------------------------------------- /utils/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/system.go -------------------------------------------------------------------------------- /utils/tool_plus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/tool_plus.go -------------------------------------------------------------------------------- /utils/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/tools.go -------------------------------------------------------------------------------- /utils/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/validator.go -------------------------------------------------------------------------------- /utils/zip_tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/utils/zip_tool.go -------------------------------------------------------------------------------- /verify/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/verify/common/common.go -------------------------------------------------------------------------------- /verify/system/sys_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/verify/system/sys_api.go -------------------------------------------------------------------------------- /verify/system/sys_auto_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/verify/system/sys_auto_code.go -------------------------------------------------------------------------------- /verify/system/sys_dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/verify/system/sys_dept.go -------------------------------------------------------------------------------- /verify/system/sys_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/verify/system/sys_menu.go -------------------------------------------------------------------------------- /verify/system/sys_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/verify/system/sys_role.go -------------------------------------------------------------------------------- /verify/system/sys_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shansec/go-vue-admin/HEAD/verify/system/sys_user.go --------------------------------------------------------------------------------