dengbiao 4 місяці тому
джерело
коміт
4d5445e675
2 змінених файлів з 24 додано та 0 видалено
  1. +7
    -0
      etc/db_tpl/config
  2. +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}}


Завантаження…
Відмінити
Зберегти