Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

MQEnergy/gorm-model

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gorm-model

基于gorm的一键生成关联mysql数据表模型结构体

GoDoc Go Report Card codebeat badge GitHub license

注意

需要注意本组件根据数据表的数据字段有两个特殊格式 time和decimal
需要引入相应组件:
1、time
2、github.com/shopspring/decimal(或其他自定义支持decimal.Decimal方法的组件)

安装到项目中

go get -u github.com/MQEnergy/gorm-model

方法

1、生成全部数据表对应的model

GenerateAllModel(cfg *ModelConfig)
db: gorm连接实例
dbName: 数据库名称
mDir: 模型存储目录
prefix: 去除的表前缀名称,不去除传空,去除出前缀名 如:gin

2、生成单个数据表对应的model

GenerateSingleModel(cfg *ModelConfig, tbName string)
db: gorm连接实例
dbName: 数据库名称
tbName: 数据表名称
mDir: 模型存储目录
prefix: 去除的表前缀名称,不去除传空,去除出前缀名 如:gin

查看案例examples

go run examples/model.go --help
 -db string
        数据库名称 如:gin_framework (default "gin_framework")
  -dir string
        模型存储目录 如:./models(存入在当前执行命令所在目录,支持多级目录) (default "./models")
  -dsn string
        数据库连接信息 如:root:123456@tcp(127.0.0.1:3306)/gin_framework?charset=utf8mb4&parseTime=True&loc=Local (default "root:123456@tcp(127.0.0.1:3306)/gin_framework?charset=utf8mb4&parseTime=True&loc=Local")
   -ic
        是否覆盖原生成的模型结构体 true:覆盖 false:不覆盖
  -p string
        数据表前缀 如: gin_ (default "gin_")
  -tb string
        模型名称 如:初始化所有(all)单个数据表就填写表名(如:gin_admin) (default "all")

按照以上参数可自定义生成数据表模型

例如:

go run examples/model.go -db=test -tb=wb_user -p=t_ -dsn='root:123456@tcp(127.0.0.1:3306)/test?charset=utf8mb4&parseTime=True&loc=Local'

注意:

1、time.Time类型需要import "time",需手动加载

2、decimal.Decimal类型需要 import "github.com/shopspring/decimal",需手动安装加载

About

基于gorm的一键生成关联mysql数据表模型结构体

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.