文件名称:tabler:为SQL支持的结构生成语法糖
文件大小:6KB
文件格式:ZIP
更新时间:2024-06-07 13:12:55
Go
餐桌椅 为SQL支持的结构生成语法糖 介绍 给定具有标记字段的结构, tabler将生成返回字符串的方法,用于执行以下操作: 建立表格 放置表 插入行 选择行 有关更多信息,请参见。 安装 go get github.com/tristanwietsma/tabler 用 将go:generate指令添加到具有SQL支持的结构的文件中。 //go:generate tabler $GOFILE 将@table装饰器添加到所有目标结构的注释块中。 用数据类型( columnType )标记每个字段,并标记主键。 // @table type User struct { ID string `tabler:"columnType=uuid&primary=true"` Email string `tabler:"columnType=var
【文件预览】:
tabler-master
----.gitignore(266B)
----tabler.go(6KB)
----LICENSE(1KB)
----README.md(2KB)
----example()
--------models_tabler.go(982B)
--------models.go(656B)