mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 21:58:23 +08:00
13 lines
226 B
Go
13 lines
226 B
Go
package model
|
|
|
|
type Function struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
Name string
|
|
Label string
|
|
Description string
|
|
Parameters string
|
|
Action string
|
|
Token string
|
|
Enabled bool
|
|
}
|