mysql表结构 转 golang 结构体struct

在线转

 https://dev.ataotaoa.com

本地转换(推荐)

github地址:

https://github.com/gohouse/converter

下载地址:

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

参数说明:

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

使用示例:

数据库test 中的 user表 进行转换, 转换后 golang struct tag 标签key json表示,golang文件输出为 model.go

./table2struct-linux.v0.0.3.bin --file model.go --dsn root:root@tcp\(localhost:3306\)/test?charset=utf8 --table user --tagKey json

对整个test 数据进行转换,  转换后 golang struct tag 标签key json表示,golang文件输出为 model.go

./table2struct-linux.v0.0.3.bin --file model.go --dsn root:root@tcp\(localhost:3306\)/test?charset=utf8 --tagKey json

 

 

 

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...