网上很多资源都说是xorm reverse mysql “root:123456@tcp(127.0.0.1:3306)/users?charset=utf8” ./
执行后报错:2022/03/16 15:00:53 [error] reverse.go:196 unknown coltype int unsigned
实际上原有的xorm 已经不能用了,现在要这么用:
go get xorm.io/reverse
然后进入到gopath下面的bin目录
vi custom.yml,用来配置连接数据库的信息:
kind: reverse name: users source: database: mysql conn_str: 'root:123456@tcp(127.0.0.1:3306)/users?parsetime=true' targets: - type: codes language: golang output_dir: ./testoutput
执行:./reverse -f custom.yml
然后进入testoutput/ 目录下,就生成好了models.go文件:
package models type userinfo struct { id uint `xorm:"not null pk autoincr comment('主键id') unsigned int"` name string `xorm:"not null default '' comment('姓名') varchar(50)"` avatar string `xorm:"not null default '' comment('头像') varchar(255)"` birthday string `xorm:"not null default '' comment('出生日期') varchar(50)"` sex int `xorm:"not null default 0 comment('性别:0未知,1男,2女') tinyint(1)"` city string `xorm:"not null default '' comment('所在城市') varchar(50)"` introduce string `xorm:"comment('自我介绍') text"` status int `xorm:"not null default 0 comment('状态:0正常,1禁用') tinyint(1)"` createtime uint `xorm:"not null default 0 comment('创建时间') unsigned int"` updatetime uint `xorm:"not null default 0 comment('最后修改时间') unsigned int"` deletetime uint `xorm:"not null default 0 comment('删除时间') unsigned int"` }
到此这篇关于go xorm生成mysql的结构体的文章就介绍到这了,更多相关go xorm结构体内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!