16 lines
540 B
Go
16 lines
540 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Promotions struct {
|
||
|
|
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
|
||
|
|
Title string `json:"title" gorm:"type:varchar"`
|
||
|
|
Description *string `json:"description" gorm:"type:text"`
|
||
|
|
ThumbnailPath *string `json:"thumbnail_path" gorm:"type:varchar"`
|
||
|
|
IsActive *bool `json:"is_active" gorm:"type:bool;default:true"`
|
||
|
|
CreatedAt time.Time `json:"created_at" gorm:"default:now()"`
|
||
|
|
UpdatedAt time.Time `json:"updated_at" gorm:"default:now()"`
|
||
|
|
}
|