// Code generated by sql2gorm. DO NOT EDIT. package entity // 门店类目表 type TalentCategory struct { ID int64 `gorm:"column:id;primary_key;AUTO_INCREMENT"` // id Category string `gorm:"column:category;NOT NULL"` // 类型 } func (m *TalentCategory) TableName() string { return "younggee_talent_category" }