// 自动生成模板Business package model import "bkb-seller/global" // 如果含有time.Time 请自行import time包 type Business struct { global.MG_MODEL Name string `json:"name" form:"" gorm:"size:20"` Email string `json:"email" form:"" gorm:"size:100"` Phone string `json:"phone" form:"" gorm:"size:20"` } func (Business) TableName() string { return "business" }