mysql表結構自動生成golang structmysql
https://github.com/gohouse/converterlinux
go get github.com/gohouse/converter
CREATE TABLE `prefix_user` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `Email` varchar(32) NOT NULL DEFAULT '' COMMENT '郵箱', `Password` varchar(32) NOT NULL DEFAULT '' COMMENT '密碼', `CreatedAt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`Id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用戶表'
命令行執行git
# 文件名: table2struct-[$platform].[$version].[$suffix] ./table2struct-linux.v0.0.3.bin -file model.go -dsn xxx -table user
-dsn string 數據庫dsn配置 -enableJsonTag bool 是否添加json的tag -file string 保存路徑 -packageName string 包名 -prefix string 表前綴 -realNameMethod string 結構體對應的表名 -table string 要遷移的表 -tagKey string tag的key
package main import ( "fmt" "github.com/gohouse/converter" ) func main() { err := converter.NewTable2Struct(). SavePath("/home/go/project/model/model.go"). Dsn("root:root@tcp(localhost:3306)/test?charset=utf8"). Run() fmt.Println(err) }
package main import ( "fmt" "github.com/gohouse/converter" ) func main() { // 初始化 t2t := converter.NewTable2Struct() // 個性化配置 t2t.Config(&converter.T2tConfig{ // 若是字段首字母原本就是大寫, 就不添加tag, 默認false添加, true不添加 RmTagIfUcFirsted: false, // tag的字段名字是否轉換爲小寫, 若是自己有大寫字母的話, 默認false不轉 TagToLower: false, // 字段首字母大寫的同時, 是否要把其餘字母轉換爲小寫,默認false不轉換 UcFirstOnly: false, //// 每一個struct放入單獨的文件,默認false,放入同一個文件(暫未提供) //SeperatFile: false, }) // 開始遷移轉換 err := t2t. // 指定某個表,若是不指定,則默認所有表都遷移 Table("user"). // 表前綴 Prefix("prefix_"). // 是否添加json tag EnableJsonTag(true). // 生成struct的包名(默認爲空的話, 則取名爲: package model) PackageName("model"). // tag字段的key值,默認是orm TagKey("orm"). // 是否添加結構體方法獲取表名 RealNameMethod("TableName"). // 生成的結構體保存路徑 SavePath("/Users/fizz/go/src/github.com/gohouse/gupiao/model/model.go"). // 數據庫dsn,這裏可使用 t2t.DB() 代替,參數爲 *sql.DB 對象 Dsn("root:root@tcp(localhost:3306)/test?charset=utf8"). // 執行 Run() fmt.Println(err) }
resultgithub
package model import "time" type User struct { Id int `json:"Id" orm:"Id"` Email string `json:"Email" orm:"Email"` // 郵箱 Password string `json:"Password" orm:"Password"` // 密碼 CreatedAt string `json:"CreatedAt" orm:"CreatedAt"` } func (*User) TableName() string { return "user" }