附近小店
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

community_team_cate.go 475 B

3ヶ月前
12345678910
  1. package model
  2. type CommunityTeamCate struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Uid int `json:"uid" xorm:"default 0 comment('0是官方') INT(11)"`
  5. StoreType int `json:"store_type" xorm:"default 0 comment('0官方自营店 1加盟店 2连锁店') INT(11)"`
  6. Title string `json:"title" xorm:"VARCHAR(255)"`
  7. Sort int `json:"sort" xorm:"default 0 INT(11)"`
  8. IsShow int `json:"is_show" xorm:"default 0 INT(1)"`
  9. }