附近小店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

community_team_store_qrcode.go 397 B

1 month ago
1 month ago
1 month ago
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. }