123456789101112131415161718 |
- package models
- import (
- "github.com/jinzhu/gorm"
- )
- // Vendor vendor
- // vendor is those who make products
- type Vendor struct {
- gorm.Model
- // vendor name
- VendorName string `sql:"type:varchar(200);not null;"`
- // vendor key
- VendorKey string `sql:"type:varchar(200);not null;key;"`
- // vendor description
- VendorDescription string `sql:"type:text;not null;"`
- Products []Product
- }
|