2022-10-28 17:04:57 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type WebSiteGroup struct {
|
|
|
|
BaseModel
|
|
|
|
Name string `gorm:"type:varchar(64);not null" json:"name"`
|
|
|
|
Default bool `json:"default"`
|
|
|
|
}
|
2022-11-11 17:41:39 +08:00
|
|
|
|
|
|
|
func (w WebSiteGroup) TableName() string {
|
|
|
|
return "website_groups"
|
|
|
|
}
|