legalgo-BE-go/database/log_ads_model.go

14 lines
493 B
Go
Raw Normal View History

2025-03-17 22:19:17 +08:00
package database
import "time"
type LogAds struct {
ID string `gorm:"primaryKey;not null" json:"id"`
ContentID string `gorm:"not null" json:"content_id"`
UserID string `gorm:"default:null" json:"user_id"`
IP string `gorm:"default:null" json:"ip"`
UserAgent string `gorm:"default:null" json:"user_agent"`
2025-03-17 22:19:17 +08:00
CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"`
UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"`
}