11 lines
125 B
Go
11 lines
125 B
Go
|
package model
|
||
|
|
||
|
type TypeModel struct {
|
||
|
BaseModel
|
||
|
Name string
|
||
|
}
|
||
|
|
||
|
func (t *TypeModel) TableName() string {
|
||
|
return "types"
|
||
|
}
|