Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
zhimeng
/
model
Seguir
2
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
2
Wiki
Actividad
Explorar el Código
updatwe
master
dengbiao
hace 4 meses
padre
dde162209c
commit
4d5445e675
Se han
modificado 2 ficheros
con
24 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+7
-0
etc/db_tpl/config
+17
-0
etc/db_tpl/struct.go.tpl
+ 7
- 0
etc/db_tpl/config
Ver fichero
@@ -0,0 +1,7 @@
lang=go
genJson=1
prefix=cos_
ignoreColumnsJSON=
created=
updated=
deleted=
+ 17
- 0
etc/db_tpl/struct.go.tpl
Ver fichero
@@ -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}}
Escribir
Vista previa
Cargando…
Cancelar
Guardar