2025-03-09 00:47:24 +08:00
|
|
|
package database
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type Ads struct {
|
2025-03-13 11:44:00 +08:00
|
|
|
ID string `gorm:"primaryKey;not null" json:"id"`
|
|
|
|
|
ImageUrl string `gorm:"not null" json:"image_url"`
|
|
|
|
|
Url string `gorm:"not null" json:"url"`
|
|
|
|
|
StartDate *time.Time `gorm:"default:null" json:"start_date"`
|
|
|
|
|
EndDate *time.Time `gorm:"default:null" json:"end_date"`
|
|
|
|
|
CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"`
|
|
|
|
|
UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"`
|
2025-03-09 00:47:24 +08:00
|
|
|
}
|