package entities import "time" type NonstockSupplier struct { NonstockID uint `gorm:"primaryKey"` SupplierID uint `gorm:"primaryKey"` CreatedAt time.Time `gorm:"autoCreateTime"` }