20 lines
352 B
Go
20 lines
352 B
Go
package models
|
|
|
|
type Template struct {
|
|
ID uint64
|
|
Name string
|
|
Datasource string
|
|
MainTable string
|
|
JoinsJSON []byte
|
|
FieldsJSON []byte
|
|
FiltersJSON []byte
|
|
FileFormat string
|
|
StatsEnabled bool
|
|
SheetSplitBy *string
|
|
Visibility string
|
|
OwnerID uint64
|
|
Enabled bool
|
|
ExplainJSON []byte
|
|
ExplainScore *int
|
|
}
|