工具Xorm reverse

Posted 一曲长歌一剑天涯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了工具Xorm reverse相关的知识,希望对你有一定的参考价值。

参考资料

Xorm reverse工具安装与使用 根据数据库自动生成go代码
golang xorm reverse 自动生成数据库实体文件

Xorm reverse是go语言golang数据库转换为代码的命令行工具,能够根据数据库自动反向生成go代码,根据数据表结构创建对应的 struct 模型,非常方便ORM的使用,下面用最简洁的步骤介绍xorm reverse工具安装与使用。

1.安装Reverse

go get xorm.io/reverse

2.查看gopath

go env|grep -i \'gopath\'

3.进入gopath目录的

cd /root/go/bin          #进入到gopath目录下的bin文件夹

4.ls命令查看一下,如果安装成功,会出现reverse文件

用vi custom.yml文件,文件用来配置连接数据库的信息。保存

kind: reverse
name: testdb
source:
  database: mysql
  conn_str: \'root:123456@tcp(192.168.1.11:3306)/testdb?parseTime=true\'
targets:
- type: codes
  language: golang
  output_dir: ./testoutput

5.运行reverse工具

./reverse -f custom.yml

6. 运行成功。进入testoutput文件夹,自动生成了models.go文件

vi一下看看吧

package models

import (
        "time"
)

type Ok struct {
        Id   int `xorm:"not null pk autoincr index INT"`
        Ncee int `xorm:"not null index INT"`
}

type Place struct {
        Country string `xorm:"TEXT"`
        City    string `xorm:"TEXT"`
        Telcode int    `xorm:"INT"`
}

type Good struct {
        Id            int     `xorm:"not null pk autoincr INT"`
        CRate       string    `xorm:"not null DECIMAL(10)"`
        ZRate       string    `xorm:"not null DECIMAL(10)"`
        ARate       string    `xorm:"not null JSON"`
        AllData     string    `xorm:"JSON"`
        Timestamp     time.Time `xorm:"not null TIMESTAMP"`
}

以上是关于工具Xorm reverse的主要内容,如果未能解决你的问题,请参考以下文章

golang的xorm如何将[]map[string][]byte 格式的数据序列化成json输出

Golang xorm工具,根据数据库自动生成 go 代码

Python 中的反转字符串:reversed()切片等

xorm的sql builder

golang xorm应用

golang-xorm库快速学习