17 lines
736 B
Go
17 lines
736 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type MagazineFiles struct {
|
||
|
|
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
|
||
|
|
Title string `json:"title" gorm:"type:varchar"`
|
||
|
|
Description string `json:"description" gorm:"type:varchar"`
|
||
|
|
MagazineId int `json:"magazine_id" gorm:"type:int4"`
|
||
|
|
DownloadCount int `json:"download_count" gorm:"type:int4"`
|
||
|
|
StatusId int `json:"status_id" gorm:"type:int4"`
|
||
|
|
IsPublish bool `json:"is_publish" gorm:"type:bool"`
|
||
|
|
PublishedAt time.Time `json:"published_at" gorm:"type:timestamp"`
|
||
|
|
IsActive bool `json:"is_active" gorm:"type:bool"`
|
||
|
|
CreatedAt time.Time `json:"created_at" gorm:"default:now()"`
|
||
|
|
UpdatedAt time.Time `json:"updated_at" gorm:"default:now()"`
|
||
|
|
}
|