You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

154 lines
4.7 KiB
Markdown

[![Build Status](https://travis-ci.org/xxjwxc/gormt.svg?branch=master)](https://travis-ci.org/xxjwxc/gormt)
[![Go Report Card](https://goreportcard.com/badge/github.com/xxjwxc/gormt)](https://goreportcard.com/report/github.com/xxjwxc/gormt)
5 years ago
[![codecov](https://codecov.io/gh/xxjwxc/gormt/branch/master/graph/badge.svg)](https://codecov.io/gh/xxjwxc/gormt)
5 years ago
[![GoDoc](https://godoc.org/github.com/xxjwxc/gormt?status.svg)](https://godoc.org/github.com/xxjwxc/gormt)
5 years ago
# [gormt](https://github.com/xxjwxc/gormt)
5 years ago
## [中文文档](README_zh_cn.md)
### mysql database to goang struct conversion tools base on [gorm](https://github.com/jinzhu/gorm)You can automatically generate golang sturct from MySQL database.
### big Camel-Case Name Rule
### JSON tag
5 years ago
5 years ago
--------
## 1. Configure default configuration items through the current directory config.yml file
5 years ago
```
out_dir : "." # out dir
singular_table : false # Table name plural (big Camel-Case):gorm.SingularTable
simple : false #simple output
is_out_sql : false # Whether to output sql
is_json_tag : true # Whether to mark JSON or not
is_foreign_key : true # Whether to mark foreign key or not
mysql_info :
host : "127.0.0.1"
port : 3306
username : "root"
password : "qwer"
database : "oauth_db"
5 years ago
```
## 2. get help
5 years ago
```
./gormt --help
or
./gormt -h
-------------------------------------------------------
base on gorm tools for mysql database to golang struct
Usage:
main [flags]
Flags:
-d, --database string 数据库名
5 years ago
-f, --foreign 是否导出外键关联
5 years ago
-h, --help help for main
-H, --host string 数据库地址.(注意-H为大写)
-o, --outdir string 输出目录
-p, --password string 密码.
--port int 端口号 (default 3306)
-s, --singular 是否禁用表名复数
-u, --user string 用户名.
```
## 3. Can be updated configuration items using command line tools
```
./gormt -H=127.0.0.1 -d=oauth_db -p=qwer -u=root --port=3306
```
5 years ago
## 4. Support for gorm attributes
5 years ago
- Database tables, column field annotation support
- singular_table, Table name plural (big Camel-Case)
- json tag json tag output
5 years ago
- gorm.Model [Support export gorm.model>>>](doc/export.md)
- PRIMARY_KEY Specifies column as primary key
- UNIQUE Specifies column as unique
- NOT NULL Specifies column as NOT NULL
- INDEX Create index with or without name, same name creates composite indexes
- UNIQUE_INDEX Like INDEX, create unique index
5 years ago
- Support foreign key related properties [Support export gorm.model>>>](doc/export.md)
5 years ago
### You can enrich data types in [def](data/view/cnf/def.go)
5 years ago
5 years ago
## 5. Demonstration
5 years ago
- sql:
```
CREATE TABLE `user_account_tbl` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`password` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`account_type` int(11) NOT NULL DEFAULT '0' COMMENT '帐号类型:0手机号1邮件',
`app_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'authbucket_oauth2_client表的id',
5 years ago
`user_info_tbl_id` int(11) NOT NULL,
5 years ago
`reg_time` datetime DEFAULT NULL,
`reg_ip` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`bundle_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
`describ` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
5 years ago
UNIQUE KEY `account` (`account`) USING BTREE,
KEY `user_info_id` (`user_info_tbl_id`) USING BTREE,
CONSTRAINT `user_account_tbl_ibfk_1` FOREIGN KEY (`user_info_tbl_id`) REFERENCES `user_info_tbl` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='用户账号'
5 years ago
```
###### --->Derived results
5 years ago
```
5 years ago
// UserAccountTbl 用户账号
5 years ago
type UserAccountTbl struct {
5 years ago
ID int `gorm:"primary_key"`
Account string `gorm:"unique"`
Password string
AccountType int // 帐号类型:0手机号1邮件
AppKey string // authbucket_oauth2_client表的id
UserInfoTblID int `gorm:"index"`
UserInfoTbl UserInfoTbl `gorm:"association_foreignkey:user_info_tbl_id;foreignkey:id"` // 用户信息
RegTime time.Time
RegIP string
BundleID string
Describ string
5 years ago
}
```
### [more>>>](doc/export.md)
5 years ago
## 6. build
5 years ago
```
5 years ago
make windows
make linux
make mac
5 years ago
```
5 years ago
or
5 years ago
```
5 years ago
go generate
5 years ago
```
5 years ago
## 7. Next step
5 years ago
5 years ago
- Add common function (ormfunc)
5 years ago
5 years ago
## 8. one windows gui tools
5 years ago
![1](/image/gormt/1.png)
![2](/image/gormt/2.jpg)
![3](/image/gormt/3.jpg)
![4](/image/gormt/4.jpg)
5 years ago
[Download](https://github.com/xxjwxc/gormt/releases/download/v1.1.0/v1.0.zip)
5 years ago
5 years ago
5 years ago
- ###### [link](https://xxjwxc.github.io/post/gormtools/)