This website works better with JavaScript.
首頁
探索
說明
登入
zhimeng
/
model
關註
2
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
2
Wiki
Activity
瀏覽代碼
updatwe
master
dengbiao
4 月之前
父節點
dde162209c
當前提交
4d5445e675
共有
2 個文件被更改
,包括
24 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
etc/db_tpl/config
+17
-0
etc/db_tpl/struct.go.tpl
+ 7
- 0
etc/db_tpl/config
查看文件
@@ -0,0 +1,7 @@
lang=go
genJson=1
prefix=cos_
ignoreColumnsJSON=
created=
updated=
deleted=
+ 17
- 0
etc/db_tpl/struct.go.tpl
查看文件
@@ -0,0 +1,17 @@
package {{.Models}}
{{$ilen := len .Imports}}
{{if gt $ilen 0}}
import (
{{range .Imports}}"{{.}}"{{end}}
)
{{end}}
{{range .Tables}}
type {{Mapper .Name}} struct {
{{$table := .}}
{{range .ColumnsSeq}}{{$col := $table.GetColumn .}} {{Mapper $col.Name}} {{Type $col}} {{Tag $table $col}}
{{end}}
}
{{end}}
Write
Preview
Loading…
取消
儲存