All Projects → gohouse → Converter

gohouse / Converter

Licence: mit
database table to golang struct (table to struct) converter with cli and go lib support

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Converter

Html Table Cli
Create interactive tables from JSON on the command-line
Stars: ✭ 23 (-86.23%)
Mutual labels:  cli, table
Sql
MySQL & PostgreSQL pipe
Stars: ✭ 81 (-51.5%)
Mutual labels:  cli, mysql
Arf Converter
Bulk ARF file converter
Stars: ✭ 10 (-94.01%)
Mutual labels:  cli, converter
Dev Setup
macOS development environment setup: Easy-to-understand instructions with automated setup scripts for developer tools like Vim, Sublime Text, Bash, iTerm, Python data analysis, Spark, Hadoop MapReduce, AWS, Heroku, JavaScript web development, Android development, common data stores, and dev-based OS X defaults.
Stars: ✭ 5,590 (+3247.31%)
Mutual labels:  cli, mysql
Toml To Go
Translates TOML into a Go type in your browser instantly
Stars: ✭ 134 (-19.76%)
Mutual labels:  struct, converter
Flowgen
Generate flowtype definition files from TypeScript
Stars: ✭ 622 (+272.46%)
Mutual labels:  cli, converter
Wait4x
Wait4X is a cli tool to wait for everything! It can be wait for a port to open or enter to rquested state.
Stars: ✭ 30 (-82.04%)
Mutual labels:  cli, mysql
Jet
CLI to transform between JSON, EDN and Transit, powered with a minimal query language.
Stars: ✭ 331 (+98.2%)
Mutual labels:  cli, converter
Typex
[TOOL, CLI] - Filter and examine Go type structures, interfaces and their transitive dependencies and relationships. Export structural types as TypeScript value object or bare type representations.
Stars: ✭ 128 (-23.35%)
Mutual labels:  cli, struct
Csv2db
The CSV to database command line loader
Stars: ✭ 102 (-38.92%)
Mutual labels:  cli, mysql
Trdsql
CLI tool that can execute SQL queries on CSV, LTSV, JSON and TBLN. Can output to various formats.
Stars: ✭ 593 (+255.09%)
Mutual labels:  cli, mysql
Tty Table
A flexible and intuitive table generator
Stars: ✭ 161 (-3.59%)
Mutual labels:  cli, table
Curriculum
Dive into our 7-month web development program covering HTML, CSS, Javascript, Node, and React!
Stars: ✭ 453 (+171.26%)
Mutual labels:  cli, mysql
Manage Fastapi
🚀 CLI tool for FastAPI. Generating new FastAPI projects & boilerplates made easy.
Stars: ✭ 163 (-2.4%)
Mutual labels:  cli, mysql
Remarshal
Convert between CBOR, JSON, MessagePack, TOML, and YAML
Stars: ✭ 421 (+152.1%)
Mutual labels:  cli, converter
Tabulate
Table Maker for Modern C++
Stars: ✭ 862 (+416.17%)
Mutual labels:  cli, table
Sqawk
Like Awk but with SQL and table joins
Stars: ✭ 263 (+57.49%)
Mutual labels:  cli, converter
Simpletable
Simple tables in terminal with Go
Stars: ✭ 288 (+72.46%)
Mutual labels:  cli, table
Png To Ico
convert png to ico format
Stars: ✭ 88 (-47.31%)
Mutual labels:  cli, converter
Table rex
An Elixir app which generates text-based tables for display
Stars: ✭ 161 (-3.59%)
Mutual labels:  cli, table

a lib for golang , generate mysql table schema to golang struct

mysql表结构自动生成golang struct

github地址

https://github.com/gohouse/converter

安装

  1. 直接下载可执行文件: 下载地址
  2. golang源码包: 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='用户表'

命令行用法

  1. 下载对应平台的可执行文件, 下载地址

  2. 命令行执行

    # 文件名: table2struct-[$platform].[$version].[$suffix]
    ./table2struct-linux.v0.0.3.bin -file model.go -dsn xxx -table user
    
  3. 参数说明

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

golang代码简单用法

package main
import (
	"fmt"
	"github.com/gohouse/converter"
)
func main() {
	err := converter.NewTable2Struct().
		SavePath("/home/go/project/model/model.go").
		Dsn("root:[email protected](localhost:3306)/test?charset=utf8").
		Run()
	fmt.Println(err)
}

golang代码详细用法示例

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:[email protected](localhost:3306)/test?charset=utf8").
		// 执行
		Run()
	
	fmt.Println(err)
}

result

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"
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].