goframe + vben-admin
Go to file
2023-12-19 16:47:52 +08:00
api/v1 curd controller优化 2022-12-14 20:27:19 +08:00
hack 更新依赖 2023-12-14 09:57:02 +08:00
internal fix: 增加FieldsEx,以获取完整数据 2023-12-16 07:42:26 +08:00
.gitattributes init 2021-03-08 10:33:18 +08:00
.gitignore 取消忽略config.toml 2021-06-14 10:06:39 +08:00
config.yaml 更新依赖 2023-12-14 09:57:02 +08:00
go.mod feat: 升级依赖 2023-12-19 16:47:52 +08:00
LICENSE init 2021-03-08 10:33:18 +08:00
main.go 根据gfv2 工程化改造,支持gf gen service 2022-10-23 15:19:39 +08:00
readme.md readme更新 2022-02-18 18:58:23 +08:00

Gf-Vben-Admin

前后端分离后台管理系统

本仓库为后端部分

前端部分

https://github.com/vbenjs/gf-vben-admin

后端语言golang

后端框架:GoFrame

前端语言Vue3.0

前端框架:Vben Admin

基本组件

  1. 鉴权: jwt

https://github.com/jinmao88/gf-jwt

  1. 权限控制: casbin

https://github.com/casbin/casbin

  1. 雪花ID 雪花漂移算法

https://github.com/yitter/IdGenerator

  1. 后端路由

Pgsql数据库相关

  • 只提供了全局的curd接口 作为demo
  • 数据库自己创建

user表sql语句

create table user
(
    id        int auto_increment comment 'primary id',
    username  varchar(120)         not null comment 'username',
    password  varchar(64)          null comment 'password',
    note      varchar(255)         null,
    nick_name varchar(120)         null comment 'nickName',
    status    tinyint(1) default 1 null comment '1:enable 2:disable',
    create_at timestamp            null,
    update_at timestamp            null,
    delete_at timestamp            null,
    primary key (id, username)
)
    charset = utf8mb4;


casbin表sql语句

create table casbin_rule
(
    ptype varchar(10)  null,
    v0    varchar(256) null,
    v1    varchar(256) null,
    v2    varchar(256) null,
    v3    varchar(256) null,
    v4    varchar(256) null,
    v5    varchar(256) null
);


路由表sql语句

create table router
(
    id        int auto_increment
        primary key,
    path      varchar(20)  null,
    name      varchar(20)  null,
    redirect  varchar(50)  null,
    title     varchar(30)  null,
    icon      varchar(100) null,
    component varchar(100) null,
    parent    int          null,
    orderNo   int          null,
    status    tinyint(1)   null,
    create_at timestamp    null,
    update_at timestamp    null,
    delete_at timestamp    null
);