re_store_preview.go 508 B

12345678910111213
  1. package vo
  2. type ReStorePreview struct {
  3. StoreID int64 `json:"storeId"`
  4. StoreName string `json:"storeName"`
  5. StoreLocation string `json:"storeLocation"`
  6. StoreType int64 `json:"storeType"` // 门店类型 1单门店,2连锁门店
  7. StoreCategory string `json:"storeCategory"` // 门店类目
  8. TeamNum int64 `json:"teamNum"` // 包含团购套餐
  9. StoreDetail string `json:"storeDetail"`
  10. CreatedAt string `json:"createdAt"`
  11. PhotoUrl string `json:"photoUrl"`
  12. }