附近小店
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

community_team_store_qrcode.go 402 B

9 달 전
12345678910
  1. package model
  2. type CommunityTeamStoreQrcode struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Uid int `json:"uid" xorm:"default 0 INT(11)"`
  5. TableNum int `json:"table_num" xorm:"default 0 INT(11)"`
  6. Type int `json:"type" xorm:"default 0 INT(11)"`
  7. IsUse int `json:"is_use" xorm:"default 0 INT(11)"`
  8. Name string `json:"name" xorm:"VARCHAR(255)"`
  9. }