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

相关文章

developer-roadmap —— 提供最全的开发者技术路线指南。前端...
一个极简的文件分享工具,无需注册且没有广告即可生成共享下...
收集 Github、Gitee优秀的开源项目,并进行归类整理。项目地...
大家好,我是 Java陈序员,我们有时会搭建一个属于自己的网站...
一个提供交互式的Web UI用于生成兼容MyBatisPlus框架的相关功...
大家好,我是 Java 陈序员。权限认证是我们日常开发绕不过的...