types.tpl 260 B

1234567891011121314
  1. type (
  2. {{.lowerStartCamelObject}}Model interface{
  3. {{.method}}
  4. }
  5. default{{.upperStartCamelObject}}Model struct {
  6. {{if .withCache}}sqlc.CachedConn{{else}}conn sqlx.SqlConn{{end}}
  7. table string
  8. }
  9. {{.upperStartCamelObject}} struct {
  10. {{.fields}}
  11. }
  12. )