mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 02:07:18 +08:00
12 lines
310 B
Go
12 lines
310 B
Go
package models
|
|
|
|
import "github.com/goravel/framework/database/orm"
|
|
|
|
type Plugin struct {
|
|
orm.Model
|
|
Slug string `gorm:"not null;unique" json:"slug"`
|
|
Version string `gorm:"not null" json:"version"`
|
|
Show bool `gorm:"not null" json:"show"`
|
|
ShowOrder int `gorm:"not null" json:"show_order"`
|
|
}
|