go_service/gorm_models/wishlist.go

12 lines
304 B
Go
Raw Permalink Normal View History

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
}