Files
2026-04-27 11:26:01 +08:00

21 lines
682 B
Go

package plant
import (
"sundynix-go/global"
"sundynix-go/model/system"
)
type Banner struct {
global.BaseModel
Title string `json:"title" gorm:"column:title;comment:标题"`
ImageId string `json:"imageId" gorm:"column:image_id;comment:图片ID"`
Image *system.Oss `json:"image" gorm:"foreignKey:ImageId"`
Sort int `json:"sort" gorm:"column:sort;default:0;comment:排序"`
IsActive int `json:"isActive" gorm:"column:is_active;default:1;comment:状态 1:启用 2:禁用"`
TargetUrl string `json:"targetUrl" gorm:"column:target_url;comment:跳转链接"`
}
func (Banner) TableName() string {
return "sundynix_plant_banner"
}