domainQuery.go.tmpl 194 B

12345678
  1. package domain
  2. {{range .gens}}
  3. type {{bigHump .table.tableName}}Query struct {
  4. {{range .tableColumns}}
  5. {{queryType .goType .goField .queryType .columnName .columnComment}}{{end}}
  6. }
  7. {{end}}