微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

golang sql2struct

1.golang sql2struct

1.1 go代码实现

package main

import (
"fmt"
"github.com/gohouse/converter"
)
func main() {
	err := converter.NewTable2Struct().
		SavePath("/home/xxx/Desktop/model.go").
		Dsn("root:123456@tcp(localhost:3306)/test?charset=utf8").
		Run()
	fmt.Println(err)
}

1.2 命令行模式

//1.下载二进制文件
https://github.com/gohouse/converter/releases

//2.执行命令
./table2struct-linux.v0.0.3.bin -file /home/xxx/Desktop/mode.go  -dsn "root:123456@tcp(localhost:3306)/test?charset=utf8"

//3.参数说明
-dsn            string 数据库dsn配置
-enableJsonTag  bool 是否添加json的tag
-file           string 保存路径
-packageName    string 包名
-prefix         string 表前缀
-realNameMethod string 结构体对应的表名
-table          string 要迁移的表
-tagKey         string tag的key

相关链接

https://github.com/gohouse/converter/releases

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐