simple-admin-core
simple-admin-core copied to clipboard
Simple Admin是一个基于Go Zero开发面向小型到大型项目的分布式微服务后端管理系统脚手架,提供丰富的后台管理功能,支持k8s快速部署,助力快速开发高并发微服务集群,适合学习和商用。Simple Admin is a powerful m...
由于 go swagger 依赖版本过低,若使用 go 1.22 版本安装会报以下错误  ```shell swagger generate spec --output=./fms.json --scan-models panic: runtime error: invalid memory address or nil pointer dereference [recovered] panic: runtime error: invalid memory...
大家可以在该贴提各种建议,点赞高的建议优先处理哦, 注意 simple-admin-core 主要负责所有其他微服务的鉴权、认证等操作,类似于 SSO 单点登录,以及后台的一些基本配置功能,其他拓展功能建议新增 API 服务,类似于 simple-admin-file。 目前规划 - [ ] #6 - [ ] #7 - [x] #8 - [x] #9 - [x] #10 - [x] #11...
项目安排 - [x] 登录注册 - [x] 菜单管理 - [x] 角色管理 - [x] 角色权限 - [x] 用户管理 - [x] 操作日志 - [x] 服务注册发现 - [x] 字典功能 - [x] 三方登录管理 - [x]...
为前后端模板添加RefreshToken实现 vben原来的前端应该是有RefreshToken接口的
**Describe the bug** schema里使用StructTag添加的tag,在types里生成的结构体里没有对应的tag **To Reproduce** Steps to reproduce the behavior: ```go // ent/schema/person.go func (Person) Fields() []ent.Field { return []ent.Field{ field.String("name").Comment("姓名").StructTag(`xlsx:"姓名"`).NotEmpty(), field.String("company").Comment("公司").StructTag(`xlsx:"公司"`).NotEmpty(), field.Int("age").StructTag(`xlsx:"年龄"`).Validate(isPositive), } } // types/types.go type PersonInfo...