附近小店
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

community_team_store_qrcode.go 397 B

il y a 9 mois
il y a 9 mois
il y a 9 mois
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 string `json:"table_num" xorm:"VARCHAR(255)"`
  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. }