- // Code generated by sql2gorm. DO NOT EDIT.
- package entity
- // 门店类目表
- type StoreCategory struct {
- ID int64 `gorm:"column:id;primary_key;AUTO_INCREMENT"` // id
- Category string `gorm:"column:category;NOT NULL"` // 一级类目
- Detail string `gorm:"column:detail;NOT NULL"` // 二级类目
- }
- func (m *StoreCategory) TableName() string {
- return "younggee_store_category"
- }
|