2023-01-19 11:32:55 +00:00
|
|
|
package gorm_models
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type Wishlist struct {
|
|
|
|
|
ID uint `gorm:"primaryKey"`
|
|
|
|
|
CreatedAt time.Time `sql:"DEFAULT:NULL" gorm:"default:null"`
|
|
|
|
|
UpdatedAt time.Time `sql:"DEFAULT:NULL" gorm:"default:null"`
|
|
|
|
|
ProductID uint
|
2023-01-19 11:34:33 +00:00
|
|
|
//Product Product
|
2023-01-19 11:32:55 +00:00
|
|
|
}
|