aptx-z / gin-admin-cli

gin admin 辅助工具

Home Page:https://github.com/LyricTian/gin-admin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gin-admin-cli - gin-admin

GinAdmin辅助工具

下载并使用

$ go get -u -v github.com/LyricTian/gin-admin-cli

创建项目

USAGE:
   gin-admin-cli new [command options] [arguments...]

OPTIONS:
   --dir value, -d value  项目生成目录
   --pkg value, -p value  项目包名
   --mirror, -m           使用国内镜像(gitee.com)
   --web, -w              包含web项目(下载gin-admin-react项目到web目录)

使用示例

$ gin-admin-cli new -m -d ~/go/src/test-gin-admin -p test-gin-admin

生成业务模块

指定模块名称和说明生成模块

USAGE:
   gin-admin-cli generate [command options] [arguments...]

OPTIONS:
   --dir value, -d value      项目生成目录
   --pkg value, -p value      项目包名
   --ctl value                控制器swagger模板(支持default(基于github.com/swaggo/swag)和tb(基于github.com/teambition/swaggo)) (default: "default")
   --router value             路由模块(routers/api/api.go) (default: "api")
   --name value, -n value     业务模块名称(结构体名称)
   --comment value, -c value  业务模块注释(结构体注释)
   --file value, -f value     指定模板文件(.json,模板配置可参考说明)
   --module value, -m value   指定生成模块(以逗号分隔,支持:all,schema,entity,model,bll,ctl,api)

使用示例

$ gin-admin-cli g -d ./test-gin-admin -p test-gin-admin -n Task -c '任务管理'

指定配置文件生成模块

$ gin-admin-cli g -d 项目目录 -p 包名 -f 配置文件(json)

配置文件说明

{
  "struct_name": "结构体名称",
  "comment": "结构体注释说明",
  "fields": [
    {
      "struct_field_name": "结构体字段名称",
      "comment": "结构体字段注释",
      "struct_field_required": "结构体字段是否是必选项",
      "struct_field_type": "结构体字段类型",
      "gorm_options": "gorm配置项",
      "binding_options": "binding配置项(不包含required,required由struct_field_required控制)"
    }
  ]
}

使用示例

创建task.json文件

{
  "struct_name": "Task",
  "comment": "任务管理",
  "fields": [
    {
      "struct_field_name": "RecordID",
      "comment": "记录ID",
      "struct_field_required": false,
      "struct_field_type": "string",
      "gorm_options": "size:36;index;",
      "binding_options": ""
    },
    {
      "struct_field_name": "Name",
      "comment": "任务名称",
      "struct_field_required": true,
      "struct_field_type": "string",
      "gorm_options": "size:200;index;",
      "binding_options": ""
    },
    {
      "struct_field_name": "Memo",
      "comment": "备注",
      "struct_field_required": false,
      "struct_field_type": "string",
      "gorm_options": "size:1024;",
      "binding_options": ""
    },
    {
      "struct_field_name": "Status",
      "comment": "状态(1:启用 2:停用)",
      "struct_field_required": true,
      "struct_field_type": "int",
      "gorm_options": "",
      "binding_options": "max=2,min=1"
    },
    {
      "struct_field_name": "Creator",
      "comment": "创建者",
      "struct_field_required": false,
      "struct_field_type": "string",
      "gorm_options": "size:36;index;",
      "binding_options": ""
    }
  ]
}
$ gin-admin-cli g -d ./test-gin-admin -p test-gin-admin -f task.json

MIT License

Copyright (c) 2019 Lyric

About

gin admin 辅助工具

https://github.com/LyricTian/gin-admin

License:MIT License


Languages

Language:Go 100.0%