talent_category.go 336 B

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